[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 - malte - 2012-07-01 altoiddealer Wrote:I'm having a very annoying problem. Almost every time that I exit a game, XBMC crashes and stays on the screen as a black window. I then have to Ctrl+Alt+Delete to kill it.Sorry, I don't have a solution for this right now. But I am working on a new release that supports different launch commands. Not sure if this also improves your situation. I hope it will be ready as a test version in some days. (Edit: Ok, it was a bit faster than I thought) RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - malte - 2012-07-01 New test version available: 1.0.5 List of changes: Import Games:
Multi disc selector If you have multiple discs for one game, RCB will now ask which disc you want to launch. This feature needs a correct setting of the Disk indicator in Edit Rom Collection dialog. As mentioned in the wiki you can use regular expressions to match your naming convention of multi disc games. New launching options In Edit Rom Collection dialog / Launch Games tab there are three new options available: 1. Use Popen to launch emulators: This is a more technical change, but everybody who has issues with launching games and coming back to XBMC may test this new option out and see if this fixes the issues. And please report here how it works! Also this new option will not show a cmd window before launching the game. This may be a nice improvement for Windows users. 2+3. Pre- and Post-launch commands: This may be useful if you need to execute commands around launching the emulator. You don't need to edit your script files anymore to achieve this. Please report how these new features are working for you. There are only some small changes left on my plate before I want to add the new version to the repo. So I want to make sure these changes are working stable for everybody. Previous version: 1.0.4 RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - altoiddealer - 2012-07-01 I installed 1.0.5, and so far Popen Launch appears to have fixed it! I'm also very glad that you added Multi-Disc support, keep up the good work! Thanks! **Edit** Actually I think I spoke too soon. The first time I did it while XBMC was in Windowed mode. But the next time I ran XBMC in Fullscreen mode and launched a game, XBMC stayed fullscreen while the emulator opened behind it. RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - xaviorffviii - 2012-07-02 Hey malte, just updated to 1.0.5. popen didn't work for me either. On the bright side, I was able to get a workaround for web/remote servers with a lot of help from other members. This is my thread from the linux section Linux fix for web/server failure. Turns out the child process was inheriting the web/remote server from xbmc. Which explains why it seemed when I manually killed xbmc after running applaunch.sh and the web/remote servers failed, that it was an opening of xbmc issue. When really no matter what way it's opened in applaunch.sh it's still going to have the web/remote server issue. The easiest fix came from members enorlin and artrafael with the command "at". Which I think could be implemented into RCB very easily with only one small extra script necessary. How this would work on windows I don't know though. But on xbmcbuntu it works like a charm. At least the mystery can be put to rest on why it was happening. I'm loving the new test version btw! Thanks Malte, -David EDIT: Popen works, got ahead of myself and didn't chmod applaunch.sh oops! Web/remote servers still fail on startup though. And there seems to be a bug where Backspace will launch the game EDIT: As far as the bug, once you hit enter on a game, no matter if you hit backspace or escape your trapped in the launch game and select disk screens with no way to go back, only to launch the game. RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - phil65 - 2012-07-02 a feature request: some properties for home window so we can add a random/latest ROMs widget to our home screen thx for the work you put in phil65 RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - malte - 2012-07-02 altoiddealer Wrote:**Edit** Actually I think I spoke too soon. The first time I did it while XBMC was in Windowed mode. But the next time I ran XBMC in Fullscreen mode and launched a game, XBMC stayed fullscreen while the emulator opened behind it.Is this reproducable every time on your system? I tested it several times and it always worked. Can you show me a log after you had this issue? xaviorffviii Wrote:On the bright side, I was able to get a workaround for web/remote servers with a lot of help from other members.Sounds good. Maybe you could try just to replace the last line in applaunch.sh with this: Code: at -f $XBMC_BIN & now BTW: my plan is to create a "user scripts" folder in RCBs addon_data folder. This folder will remain unchanged in case of an RCB update. So every user can more easily modify the solo mode and other scripts. xaviorffviii Wrote:As far as the bug, once you hit enter on a game, no matter if you hit backspace or escape your trapped in the launch game and select disk screens with no way to go back, only to launch the game.Thanks for the hint. I will check it. phil65 Wrote:a feature request: some properties for home window so we can add a random/latest ROMs widget to our home screenNice idea. I would be happy to implement it. May I PM you to ask for details? I also have some changes in the latest version that will require slight changes to the skin. RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - phil65 - 2012-07-02 (2012-07-02, 08:46)malte Wrote:altoiddealer Wrote:**Edit** Actually I think I spoke too soon. The first time I did it while XBMC was in Windowed mode. But the next time I ran XBMC in Fullscreen mode and launched a game, XBMC stayed fullscreen while the emulator opened behind it.Is this reproducable every time on your system? I tested it several times and it always worked. of course. just ask (btw i´m german, too, so you can switch languages if you want ) RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - xaviorffviii - 2012-07-03 Hey malte no dice on "at -f xbmc now" It kept coming back with no such file or directory. "&" came back with my favorite error garbled time. Even when I changed it to /usr/bin/xbmc it didnt launch xbmc, only gave me "job 29 with the date and time" RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - malte - 2012-07-03 (2012-07-03, 03:33)xaviorffviii Wrote: Hey malte no dice on "at -f xbmc now"Ok, so it seems to require 2 separate scripts to work properly. I will see if I can do anything on it when I start working on separating the script folders (release after next I guess). RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - Darkcloud - 2012-07-04 Right now I have the problem, that RCB doesn't give me the disc selector at all for some games. It seems it doesn't work for games that have no info scraped (in my case Romhacks especially). The other problem is, that every disc shows up as _disk in the selector. RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - malte - 2012-07-04 (2012-07-04, 02:54)Darkcloud Wrote: Right now I have the problem, that RCB doesn't give me the disc selector at all for some games. It seems it doesn't work for games that have no info scraped (in my case Romhacks especially).You are right. Just tested it here and I could reproduce it. There is a bug with importing multi disc games that could not be scraped. Good catch. (2012-07-04, 02:54)Darkcloud Wrote: The other problem is, that every disc shows up as _disk in the selector.Again, good find. I can reproduce it, too. Will see how to fix it. I just tested with disc naming like "MyGame (Disc1).iso" etc. RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - altoiddealer - 2012-07-04 So Im still having trouble with RCB on Windows ( but for all I know, XBMC could be the culprit). 90% of the time that I exit games after using RCB with the default settings, XBMC is left as a black unresponsive window that requires Taskamager to kill. But sometimes, everything just works perfectly fine over and over again, with unchangibg results until then next time I launch XBMC http://pastebin.com/1U3EWNBL I set Nes to Popen, and like I reported earlier, Mednafen opened behind XBMC (i didnt go to the log, and now I cant seem to reproduce this again atm) i will post a log when this happens again I tried again, but this time mednafen only launched as a window in the upper left corner, and xbmc was minimized after killing the emu (not ideal for my setup) http://pastebin.com/0dDvSqZN And again... same results as above, but this time when I Restored XBMC the RCB screen was unresponsive, but I could hear menu sounds http://pastebin.com/LLvbE2Ws I thought maybe it had to do with mednafen, so I tried SNES with Plaunch. That worked, but when I exited Zsnes, XBMC was minimized http://pastebin.com/bqN82czP i decided to try launching in Solo mode and Popen, but when I exit the emu, an errors pops up "CApplication::Create() Failed" http://pastebin.com/VHSQqmVw same thing happens with just Solo mode http://pastebin.com/cMTEwYgU Maybe solo mode will get around my issue with reloading XBMC if I can fix that error from popping RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - Maleficium - 2012-07-04 I'm testing the latest version, 1.0.5 and I noticed that "Missing Info Filter" its only displayed in Confluence skin. After rescraping a single game (it happens most of the times, not all) the "Rom File Mask" in the Rom collection definitions its changed to the name of the game. Following rescraping don't give any results until edit the values to the right ones. NFO files don't update when rescraping games. Some GIF images crashes XBMC (Windows) when navigating in RCB menu (maybe a XBMC problem) Can you check if its real bugs or only my problems ? I already downgraded, upgraded, uninstalled, installed, etc always with the same results but I'm backing up my config.xml and MyGames.db so not sure anymore RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - malte - 2012-07-04 altoiddealer Wrote:So Im still having trouble with RCB on Windows ( but for all I know, XBMC could be the culprit). 90% of the time that I exit games after using RCB with the default settings, XBMC is left as a black unresponsive window that requires Taskamager to kill.Thanks for all the logs. Unfortunately, I can't see any relevant errors inside. I will try again to reproduce this issue on my 64bit machine. altoiddealer Wrote:i decided to try launching in Solo mode and Popen, but when I exit the emu, an errors pops up "CApplication::Create() Failed"This may be fixed with this one. Unfortunately it does not work for all of us. If it still does not you could try with these scripts instead. altoiddealer Wrote:Maybe solo mode will get around my issue with reloading XBMC if I can fix that error from poppingYes, solo mode should fix these issues. Maleficium Wrote:I'm testing the latest version, 1.0.5 and I noticed that "Missing Info Filter" its only displayed in Confluence skin.Yes, atm thats it. Other skinners are already informed (Aeon MQ and Nox) but they should wait for release until new RCB version is in repo. Otherwise it will be too confusing if the skin provides a feature that the script does not have. Maleficium Wrote:After rescraping a single game (it happens most of the times, not all) the "Rom File Mask" in the Rom collection definitions its changed to the name of the game. Following rescraping don't give any results until edit the values to the right ones.Uh, this should not happen. But due to my lazy implementation of this feature it is not impossible. I will fix this with next release. Thanks for reporting. Maleficium Wrote:NFO files don't update when rescraping games.Yes, that is the way it should be. But I guess I could add an option if a user wants to override nfo files. Maleficium Wrote:Some GIF images crashes XBMC (Windows) when navigating in RCB menu (maybe a XBMC problem)Never heard of that. But it really sounds like it was more an XBMC issue. Can you please send me one of these files? RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - Maleficium - 2012-07-05 Unfortunately at this point I already converted the GIFs that crashed my XBMC (windows) and I don't have any idea of the name of the games. Next time it happens I'll report. Still missing the possibility to define "Rom File Mask" as *.tzx.zip or *.tap.zip Thanks by your hard work. |