[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
|
RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - Tomkun - 2014-06-23 (2014-06-18, 19:31)Maleficium Wrote: I did my own offline scapper for MAME 0.153, it contains 4156 unique games (probably I missed some clones) 320 of them flagged as non working in MAME official list (some will run with a few problems) but running with other arcade emulators. That's really great, Maleficium. Would you be so kind as to share your sources and method for making this file? I'd love to contribute. Did you write all the descriptions yourself? What software did you use to write the file? Thanks! RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - Maleficium - 2014-06-23 (2014-06-23, 04:38)Tomkun Wrote: That's really great, Maleficium. I think that you're asking about mame.txt so to be honest, I'm really not sure how I get to the final stage of the file (sorry, I'm always doing lot of stuff at the same time hehehe) but I know that I started following the instructions in http://www.quickplayfrontend.com/index.php?showtopic=474 I left all kind of playable games excluding clones and bios in the result list. After that I downloaded the Arcade videos in Emumovies and added manually 320 games that I got videos but MAME list as not working (some will run with a few problems but will run with other arcade emulators, you may use this scraper not only for MAME). As far I remember I used TextCrawler (a massive text editor) to place the desired fields the way I wanted in order to be used with the current parser file. Finally I had to edit manually some games name because there's a few different games with the same title like "Commando" so I added (Sega) to one of them (There's the Capcom game with the same name). Removed manually Mechanical games that MAME list as playable but I don't see how. The descriptions I added them manually too using copy/paste from TheGamesDB and from MobyGames. I deleted also a few clones and some bios that the fist step didn't excluded. Probably you'll still find some clones and some other non desired stuff that the official MAME list and me didn't notice yet, easy to remove with any text editor RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - malte - 2014-06-23 Solid One Wrote:My problem is: On "Info" viewstate, sometimes RCB gets me stuck on a black screen with all games gone. When this happens, I'm forced to go back to previous menu (by pressing Esc) and then opening RCB addon again. By doing this, RCB goes back to "Info2" showing the first game of my rom collection.Sounds like you are experiencing this issue. Right now there is no solution for this issue but I want to reduce the impact by reloading the list if this happens. I hope I can fix this with one of the next releases. RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - Solid One - 2014-06-23 (2014-06-23, 14:43)malte Wrote:Solid One Wrote:My problem is: On "Info" viewstate, sometimes RCB gets me stuck on a black screen with all games gone. When this happens, I'm forced to go back to previous menu (by pressing Esc) and then opening RCB addon again. By doing this, RCB goes back to "Info2" showing the first game of my rom collection.Sounds like you are experiencing this issue. Right now there is no solution for this issue but I want to reduce the impact by reloading the list if this happens. I hope I can fix this with one of the next releases. I see. This is a really annoying issue, but at least I can simply reload RCB screen by pressing Esc and opening it again. Anyway, Good luck solving it. However, the main problem around this, to me, is the fact that it changes viewstate to "Info2". Is there a easy way of changing default viewstate from "Info2" to "Info"? I tried editing this file, from confluence folder: "script-Rom_Collection_Browser-main.xml", but my tries resulted on RCB crashing XBMC. RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - Catalyst - 2014-06-24 Hey folks, I'm hoping somebody here will be able to help me with a couple of RCB issues I'm having. 1.) No matter which version of XBMC I use or which skin there is always on game in every collection I scrape that refuses to be scraped even if I select that game and choose scrape. This only happens with local nfo. Is there a fix for that besides editing the addondata? 2.) If I have "escape emulator cmd" selected none of my games will launch. Thanks. RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - Tomkun - 2014-06-24 (2014-06-23, 12:21)Maleficium Wrote:(2014-06-23, 04:38)Tomkun Wrote: That's really great, Maleficium. Thanks for the advice. I'll have a look when I get home from work. By the way, I had never heard of TextCrawler before today and it looks brilliant. Thanks for introducing me to it! RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - malte - 2014-06-24 Solid One Wrote:However, the main problem around this, to me, is the fact that it changes viewstate to "Info2". Is there a easy way of changing default viewstate from "Info2" to "Info"? I tried editing this file, from confluence folder: "script-Rom_Collection_Browser-main.xml", but my tries resulted on RCB crashing XBMC.I have to check this myself. Right now, I can't remember anymore how the default is set. Catalyst Wrote:1.) No matter which version of XBMC I use or which skin there is always on game in every collection I scrape that refuses to be scraped even if I select that game and choose scrape. This only happens with local nfo. Is there a fix for that besides editing the addondata?Can you show me a log after you tried to scrape these games? Catalyst Wrote:2.) If I have "escape emulator cmd" selected none of my games will launch.You have to de-select it then. I guess this is a misunderstanding of the feature. "Escape cmd" just means that RCB will escape the command string before it invokes the command. E.g. /usr/bin/my emulator/ will be written /usr/bin/my\ emulator/ (\ before the whitespace). On some systems you need to activate this option but on most it is required to deactivate it. RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - jordan19 - 2014-06-24 hey i was wondering if anyone could help me with an issue im having? if i use rcb in solo mode it makes me start all my games from the begining but if its not in solo mode it finds my in-game saves correctly. im using xbmc 13.1 and the latest test version of rcb on windows. all help will be greatly appreciated. RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - tranfa - 2014-06-24 (2014-06-21, 18:49)yamzzz Wrote: FatMatch worked really well and all those nfos saved me a lot of time scraping! Thanks! A quick question: where should the .nfo files be placed, in order to be properly scraped by the local nfo scraper? Thanks in advance! RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - Maleficium - 2014-06-25 (2014-06-24, 23:19)tranfa Wrote: A quick question: where should the .nfo files be placed, in order to be properly scraped by the local nfo scraper? The .nfo files should be placed in the same directory where you have the games, or you may define the directory you want in RCB settings. I think that the best choice its to define a different directory to prevent that some rom management program remove the files. RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - tranfa - 2014-06-25 (2014-06-25, 01:39)Maleficium Wrote:(2014-06-24, 23:19)tranfa Wrote: A quick question: where should the .nfo files be placed, in order to be properly scraped by the local nfo scraper? Thank you Maleficium. RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - tranfa - 2014-06-25 Another question. Owning the C64 roms and the relative covers from Gamebase, which would be the best way to scrape them on RCB? Would it be suggested to use your .nfo files, would the naming conventions be compatible? RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - Maleficium - 2014-06-26 (2014-06-25, 23:17)tranfa Wrote: Another question. It will be difficult to match that one. In fact I used the Gamebase collection but I renamed all games massively using the data from the text files they place inside the zip file with some external programs. Maybe the best option its use the Tosec dat files or GB2SD to rename all the games but then they will not work in the Gamebase. RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - Catalyst - 2014-06-26 Quote:Catalyst Wrote:1.) No matter which version of XBMC I use or which skin there is always on game in every collection I scrape that refuses to be scraped even if I select that game and choose scrape. This only happens with local nfo. Is there a fix for that besides editing the addondata?Can you show me a log after you tried to scrape these games? Okay, thanks for clearing up the esc cmd misunderstanding. I've had the local nfo scraping problem on different machines with both frodo and gotham using different skins so I can't be the only one. Both machines were the same model though. Here's the debug log: http://pastebin.com/fn8q2RXt Thanks for the help it is appreciated. RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - malte - 2014-06-26 Solid One Wrote:However, the main problem around this, to me, is the fact that it changes viewstate to "Info2". Is there a easy way of changing default viewstate from "Info2" to "Info"? I tried editing this file, from confluence folder: "script-Rom_Collection_Browser-main.xml", but my tries resulted on RCB crashing XBMC.Thats strange. I still did not find out where it sets the default to Info2 view. As a workaround you can remove the complete Info2 view from the skin file. To do this edit the file "resources/skins/Default/720p/script-Rom_Collection_Browser-main.xml" in RCBs addon directory. You need to delete all lines between 475 (<!-- gamelist 52 --><control type="group">) and 953 (</control>). jordan19 Wrote:hey i was wondering if anyone could help me with an issue im having?What emulator do you use? I have to try to reproduce this. Catalyst Wrote:I've had the local nfo scraping problem on different machines with both frodo and gotham using different skins so I can't be the only one. Both machines were the same model though. Here's the debug log:The problem is this: Code: 21:41:54 T:5772 NOTICE: RCB_WARNING: an error occured while parsing game description: C:\Users\Joseph\Documents\Games\SNES\Super Metroid.nfo |