[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 - Maleficium - 2012-04-28 I just want to say thanks to malte, not only with the great job you made with Rom Collection Browser but also and not less impressive the GREAT support you are giving through this forum to all people in needs RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - Hal_Emmerich - 2012-04-28 My rom list is actually around 5000 kb, if you'd like me to send it to your email, that'd be no problem. RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - xaviorffviii - 2012-04-28 Malte thanks for replying so quick! Like the person above said you really have great support for your work! I was hoping I wasn't going to have to change to numerical. It's ok though I have it setup to only show boxart and fanart using the simplistic theme so I wouldn't even notice anyway. Do you have any plans on implementing a "sets" feature like xbmc has with movie trilogies? RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - Darkcloud - 2012-04-28 (2012-04-27, 17:58)malte Wrote:Hal_Emmerich Wrote:C) Bug: Interface Lockup when rapidly switching consolesNever noticed this. But I will test in detail. Maybe my collections just aren't big enough. I have the same issue. It happens more often with bigger collections but I think none of them is really big. Around 300 or 400 max. Most times it doesn't lock up but the menu to apply different filters doesn't work. I can use it and scroll through the options but it doesn't change what is displayed. When I exit RCB i get a services.py error popup. The problem started since I used a Eden. RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - Hal_Emmerich - 2012-04-28 I've had it since whatever 10 was. I SUSPECT what might be happening is it's still reading from the database when the next call is made, which would result in a read error. Without knowing Python I can't really know for sure. RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - Hal_Emmerich - 2012-04-28 Solved my problem Malte and I can report that I found the reason for the error. Based on your suggestion, I went into the database, realizing the problem was occurring only on a few genre's. I also realized you had to be right, as on those three entries, the publisher filter did not populate. I cross referenced games that involved the genres 'Stealth' and 'Action', and tracked the problem to Syphon Filter 1, a PSX game by 989 studio's. The scraper however only retrieved '989', which I suspect was being interpreted as an integer, not a string. Including text that would force it to string (IE: 989 Studios Inc) corrected the issue. I hope this helps you in your project. If there is -anything- I can do, please do not hesitate to ask. RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - malte - 2012-04-29 Maleficium Wrote:I just want to say thanks to malte, not only with the great job you made with Rom Collection Browser but also and not less impressive the GREAT support you are giving through this forum to all people in needsThanks xaviorffviii Wrote:Do you have any plans on implementing a "sets" feature like xbmc has with movie trilogies?Yes, I have plans. But atm no time to realize them. I guess it will take some weeks/months before I can start working on things like this. But I really hope it will come... Darkcloud Wrote:I have the same issue. It happens more often with bigger collections but I think none of them is really big. Around 300 or 400 max. Most times it doesn't lock up but the menu to apply different filters doesn't work. I can use it and scroll through the options but it doesn't change what is displayed. When I exit RCB i get a services.py error popup. The problem started since I used a Eden. Hal_Emmerich Wrote:I've had it since whatever 10 was. I SUSPECT what might be happening is it's still reading from the database when the next call is made, which would result in a read error. Without knowing Python I can't really know for sure.I will look into it. Thanks again for reporting. Hal_Emmerich Wrote:Solved my problem Malte and I can report that I found the reason for the error. Based on your suggestion, I went into the database, realizing the problem was occurring only on a few genre's. I also realized you had to be right, as on those three entries, the publisher filter did not populate. I cross referenced games that involved the genres 'Stealth' and 'Action', and tracked the problem to Syphon Filter 1, a PSX game by 989 studio's. The scraper however only retrieved '989', which I suspect was being interpreted as an integer, not a string. Including text that would force it to string (IE: 989 Studios Inc) corrected the issue.Wow, good catch. I already found the part in code that I have to fix. With next release you should be able to use 989 as studio again. Thanks for your investigation! RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - gman3042 - 2012-04-29 Running into a small issue... Everytime I try to import a game with multiple . or -, it errors out. Like WCW v. NWO - world tour. I uploaded the pastebin here. http://pastebin.com/kRQRfe5s RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - cowhead - 2012-04-29 been having some trouble getting rom collection browser to work. I've been trying to add zsnes but with no luck... first I was getting an error message saying "could not create directory" (or something along those lines) when rcb was trying to scrape artwork online. I fixed that by manually creating the necessary directories but now I'm getting a message "could not create artwork files." I am truly stumped...been googling the best I can to try and fix this but no luck. Any ideas I care a lot more about just being able to play games than look at the artwork, I would be perfectly happy if there was a way to skip the scraping altogether. sorry for being a noob, thanks in advance for any help! xbmc.log file can be found at: http://pastebin.com/WZcuY4QL <iframe src="http://pastebin.com/embed_iframe.php?i=WZcuY4QL" style="border:none;width:100%"></iframe> <script src="http://pastebin.com/embed_js.php?i=WZcuY4QL"></script> RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - malte - 2012-04-30 gman3042 Wrote:Running into a small issue...Seems to have problems with the "." as it thinks the filename ends at "WCW vs". I will check how to fix it. In the meantime you can try to import the games with scraper in interactive mode. This will let you choose from found results. cowhead Wrote:been having some trouble getting rom collection browser to work. I've been trying to add zsnes but with no luck... first I was getting an error message saying "could not create directory" (or something along those lines) when rcb was trying to scrape artwork online. I fixed that by manually creating the necessary directories but now I'm getting a message "could not create artwork files." I am truly stumped...been googling the best I can to try and fix this but no luck. Any ideas?Relevant part of the log file is: Code: 11:05:45 T:5060 NOTICE: RCB_ERROR: Could not create file: 'C:\Program Files\Zsnes\artwork\boxfront\Final Fantasy II.jpg'. Error message: '[Errno 13] Permission denied: 'C:\\Program Files\\Zsnes\\artwork\\boxfront\\Final Fantasy II.jpg'' RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - cowhead - 2012-04-30 aaaaand....problem solved! I moved my roms out of the program folder and it works perfectly now. I feel a little silly now.... thanks for your help! this opens up a whole new realm of awesome in xbmc... RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - jelly - 2012-04-30 (2012-03-23, 08:12)fixxxer76 Wrote: Has anyone been able to successfully launch roms on RCB for Mac? I have a pc and a mac and the pc version works great for all emulators but on my mac It seems to open the emulators but does not launch any rom. I have tried multiple emulators. If anyone has made it work, can someone point me to a tutorial or help me out I'm not sure what is going wrong? I know this is a generic quesiton but im stuck. Also when I try to select the executable (.app) it doesn't let met select the .app but I am selecting the content/mac os/"sne9x" for example. I dunno. There's a post here http://www.snes9x.com/phpbb3/viewtopic.php?f=6&t=5311 about this but im not sure what to do with- open -a /Applications/Snes9x.app /path/game.smc RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - boblablah - 2012-04-30 (2012-04-21, 09:11)malte Wrote: ... Only way around this with current release is to use solo mode. I will see if I can do anything against it from the coding side. I wanted to change the command that RCB uses to invoke emulators one day. Maybe this will also solve this problem. From an XBMCBuntu standpoint, and per reading at AngelsCry's site, i believe the solo mode execution doesnt work in my case. I use Dolphin as a wii emulator in XBMCBuntu and it works fine in the lxde desktop evironment. I found a need to toggle the "esc emulator cmd" to the off position as the default hotkeys are to use esc to stop the emulator itself. Once a change is made to the emulator to the hotkey to stop from esc to something else, the emu loads, but I lose the abilty to have any input to the emulator. the command line I am using is something like "/usr/games/dolphin-emu" with the arguements of " -e -b %ROM%" It loads, and I can play, but i essentially need to ssh into the box and restart xbmc when I am done playing, since the inputs seem to stick with xbmc rather than the current window focus... any ideas to make this cleaner? RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - DigiTech - 2012-05-01 hi malte, any advise for rcb before i upgrade to xbmc eden, im in dharma right now, i dont want to lose all my precious time and work dedicated to the wonderful rcb, any tips? Thanks! RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - malte - 2012-05-01 jelly Wrote:There's a post here http://www.snes9x.com/phpbb3/viewtopic.php?f=6&t=5311 about this but im not sure what to do with-You can try to launch a game with this command in a command shell. Not sure how to do this on Mac but I am sure there is one available. When you opened the shell just enter the command with the correct parameters and see if it works. You don't really need this step, it is just to clarify if it works in general before you start messing around with RCB. If this works you can try to do the same thing from RCB. In this case I guess you need to use "open" as emulator cmd and -a /Applications/Snes9x.app "%ROM%" as emulator params. boblablah Wrote:From an XBMCBuntu standpoint, and per reading at AngelsCry's site, i believe the solo mode execution doesnt work in my case.Not sure if I understand 100%. But I guess you are mixing up some things. 1. The solo mode statement above is (afaik) only windows related because there have been problems with XBMC hanging after the emulator is launched. I have never seen this behaviour on linux. 2. Why should the solo mode not work for you? It was not possible to use solo mode with XBMCLive (without installing a separate window manager) but it should be no problem with XBMCbuntu. 3. "esc emulator cmd" has nothing to do with esc key. It just uses a different way to "write" the path to your roms on the command line. So, if you have trouble with roms not launching, toggle the "esc emulator cmd" parameter. Otherwise just leave it as is. boblablah Wrote:the command line I am using is something like "/usr/games/dolphin-emu" with the arguements of " -e -b %ROM%"In this case I think you should try to use the solo mode. There are other options preventing XBMC from handling the input but iirc they are all quite tricky and cause other problems. DigiTech Wrote:hi malte, any advise for rcb before i upgrade to xbmc eden, im in dharma right now, i dont want to lose all my precious time and work dedicated to the wonderful rcb, any tips? Thanks!Hi, welcome back I am not aware of any issues with upgrading from Dharma to Eden. To be on the safe side you could backup your MyGames.db and config.xml but RCB should not change anything during update. Only major thing that changed is that the solo mode feature works technically different (autoexec.py is replaced by RCB service). But this should not have any effect for the user. |