![]() |
[RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Add-on Support (https://forum.kodi.tv/forumdisplay.php?fid=27) +---- Forum: Game Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=291) +---- Thread: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs (/showthread.php?tid=70115) Pages:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
|
- st graveyard - 2012-02-07 Thanks for the quick help. I will try this tonight. I will keep you posted. Cheers, Grave - st graveyard - 2012-02-07 Hello Malte, Using a combination of tricks and skins, I'm now testing the scraping functionalities of RCB. And I think I have found a bug, or I'm doing something wrong. The collection of games I'm importing contains 781 games. I used the confluence skin to check the counter and noticed not all of them were imported. So I did some rescraping using the techniques you explained. after rescraping, all the 781 nfo files were created. YES, a first step. still not all games were in the list in XBMC. So then I completely removed the collection and recreated them using all offline content. I had my box scans and art on my HD, and RCB created 781 nfo files. After a complete new creation and import of the offline content, all games were in the DB in xbmc. Great ... But now I see that the actual content of the nfo files is not there. No description, no pub, no dev, no year ... Could this be a bug, or am I missing something? I tested this in Confluence and MQ3. Sorry if I'm being stupid here, but just wanted to let you know. I'll try and test some more and keep you posted. EDIT : forget it, I have my description files in another dir than the games dir, so I will retest tomorrow. Sorry about this .... Cheers, Grave - reapy - 2012-02-08 I spent a few minutes working on the offline mame scraping, just trying to get one of the games to show up that was not being added. I'm not sure how to go about finding the CRC based on what you said... was the idea to put the wrong CRC in the mame.txt file, then go check what was in the log to see what it came up with, then correcting it in the mame.txt file? I did notice that on one of the files I tried to add (the game is listed in the .txt but no nfo was created) it was still having problems, I checked the log and there an error on an & in the <plot> section under Consoles: I removed the & and it was able to pick it up with the local.nfo scrapper. I saw somewhere else in another nfo file => meaning that I guess the parser normalized a > from mame.txt file to the .nfo... does the scrapper also need to escape & into something else? I also am getting an error that is repeatable. I was trying to see if I could change the local scrapper to search on the game name: field rather than CRC (can you do this? ). The steps for me were: 1. Open rom collection browser 2. Context menu 3. Edit offline scrappers 4. Save config 5. Context menu 6. Import Games .... The menu items for selecting any options are missing. Here is a paste bin of that sequence: http://pastebin.com/mgAgBLaS I have also at times come across moments when in the sort window, blocks of options were missing as well. I'm not sure how to reproduce that one though. All these are fixed by just quitting to XBMC main menu and restarting again. I have not tried the new version yet, so this is on the 1.0 downloadable from the eden programs repository. - malte - 2012-02-08 Thanks for testing and reporting. I made some more tests on my own and found some inconsistencies between the desc file and the parser (or the crc values). I am going to change the matching inside the file to use the zip filenames instead of crc values. This increased the number of matches in my tests from 52/108 to 98/108 (just testing with a little number of games). I hope to release the new version of the files today or tomorrow. I also could reproduce the bug with the missing options. Will see how to fix that. - bigdog6262 - 2012-02-08 Quote:This has to be done by the skin makers of jx720 or somebody else who is willing to take the task.that would be tough and for xbmc4xbox would be less ram consuming - st graveyard - 2012-02-08 Hey Malte, I informed Marcos Qui about the new features in RCB by creating a bug report on his google code site. Just to keep you informed. Take care, Grave - malte - 2012-02-09 malte Wrote:I made some more tests on my own and found some inconsistencies between the desc file and the parser (or the crc values). I am going to change the matching inside the file to use the zip filenames instead of crc values. This increased the number of matches in my tests from 52/108 to 98/108 (just testing with a little number of games). I hope to release the new version of the files today or tomorrow. Just uploaded a new version of the MAME description and parser files: link. It requires one little change to the configuration to work with these new files: Set "Use filename as crc" to True in Edit Offline Scrapers dialog. - reapy - 2012-02-12 Got a chance to try this out and it did a much, much better job of getting all the games in to RCB. Thanks much! Remaining art - rickyk586 - 2012-02-12 I can't figure out how to attempt to scrape are for the roms that do not already have all the art. It seems like when I run import games, it attempts to get art and info for every game even though I already have all the art and info for most of them. Does anyone know how to do this?? - malte - 2012-02-12 rickyk586 Wrote:I can't figure out how to attempt to scrape are for the roms that do not already have all the art. It seems like when I run import games, it attempts to get art and info for every game even though I already have all the art and info for most of them.It always checks for info and artwork during scraping. But it does not download art if you already have this type of art. - MarcosQui - 2012-02-13 malte Wrote:.. Hi malte, I'll fix it in Aeon MQ 3 version 1.2.3. - malte - 2012-02-13 MarcosQui Wrote:Hi malte, I'll fix it in Aeon MQ 3 version 1.2.3.Great. I am also done with my changes and can release to the repo soon. I will send you the details (not much to do on your side). - benholtby - 2012-02-15 I am just trying to get this running in Solo Mode and have made the applaunch.sh executable but when I launch a rom it simply restarts xbmc and loads back into RCB. Can someone just run through the process of making applaunch.sh executable just to ensure I have done it correctly (I used chmod etc) I am on the latest Dharma release. Thanks - malte - 2012-02-16 benholtby Wrote:I am just trying to get this running in Solo Mode and have made the applaunch.sh executable but when I launch a rom it simply restarts xbmc and loads back into RCB.I guess "chmod a+x filename" should do it. You could upload an xbmc.log after you tried to launch a game. Then I could see what causes the error. - malte - 2012-02-16 New version available: 0.9.9 This version just contains some small bug fixes and refactorings that are required for Eden repo or future development. Note: As Eden is close to be released as stable version (so I guess) I removed all code that was used to keep Camelot (not Dharma!) compatibility. So if anyone is still using this old XBMC release, please update. Its time ![]() List of changes: General:
Import Games:
Launch Games:
Previous version: 0.9.8 |