![]() |
[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 - negge - 2012-10-21 @truthlesshero: you should tick "Run emulator in solo mode" under "Launch options" in your ROM collection. That will cause XBMC to be closed while the emulator is running so it doesn't hog any resources. RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - truthlesshero - 2012-10-22 (2012-10-21, 11:49)negge Wrote: @truthlesshero: you should tick "Run emulator in solo mode" under "Launch options" in your ROM collection. That will cause XBMC to be closed while the emulator is running so it doesn't hog any resources. thanks..i'll test it out! RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - negge - 2012-10-23 @versus: Thanks for the hint, it worked like a charm! RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - megaskywarp - 2012-10-23 Hi ya fellas, Im running AEON MQ4 and I can't seem to get Dolphin (Gamecube) to launch correctly for the life of me. Every time I try to launch a game a command window pops up with a help dialog box containing usage dialogs and "Unexpected parameter 'H:\Programs\Emulators\GameCube\Roms\Mario Kart.iso <or whatever game title>. If anybody has any ideas or suggestions I would greatly appreciate the help. thanks RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - versus - 2012-10-23 (2012-10-23, 02:35)megaskywarp Wrote: Hi ya fellas, try putting the /e switch before the %rom% parameter in RCB RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - megaskywarp - 2012-10-23 versus - you're a king! Thanks so much! RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - bradvido88 - 2012-10-24 All of my roms are on a network share, and I took the advice here to change the format in the config.xml to use \\server\share... instead of smb://server/share... I changed this for both <romPath> and <mediaPath>. This let RCB successfully scrape my roms and download images for them. However, when I browse them, the images do not show up. In the .nfo next to the rom and in MyGames.db, the images exist and have the correct path (\\server\share\...), but RCB does not load them. There are also no errors in XBMC's debug log. Any hints on how to fix or debug this? RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - bradvido88 - 2012-10-24 (2012-10-24, 19:23)bradvido88 Wrote: All of my roms are on a network share, and I took the advice here to change the format in the config.xml to use \\server\share... instead of smb://server/share... I changed this for both <romPath> and <mediaPath>. So I've figured out that the problem is when you scrape the games the <mediaPath> needs to use the \\server\share syntax. However, once they are scraped, RCB/XBMC needs them in the smb:// path to find the images. The problem is that they get stored in MyGames.db using the scraped path of \\server\share. RCB should automatically convert this path to the XBMC convention of smb:// when it's added to the database. I fixed MyGames.db by executing: Code: UPDATE file SET name = REPLACE(name, "\\", "smb://") WHERE fileTypeId IN(1,2,3,4,5); RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - malte - 2012-10-25 versus Wrote:To fix properly it needs to be changed to something like this.This exact line will not work but Angelscry found out another way to use this feature with the json API. I did not yet try it myself but I am sure this should work. I will adopt this in next release (coming soon). bradvido88 Wrote:So I've figured out that the problem is when you scrape the games the <mediaPath> needs to use the \\server\share syntax. However, once they are scraped, RCB/XBMC needs them in the smb:// path to find the images.Thanks for sharing. We are exactly working on this issue atm. This should also be fixed in next release. RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - vingadorjr - 2012-10-26 Im having some problems when im trying to run 7zip files with NES roms inside (no problem with .zip files at all). Does RCB really have support for 7zip with multiple roms inside? Im running XBMC in windows 7... if someone can give me a little help here i appreciate. Thanks in advance. Re: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - Frozin - 2012-10-26 Hello, I read a few post that some have the psxreload emulator working. I unfortunately can't get it working properly. It starts but the game doesn't start just the emu. If someone who has it working correctly can help me out it be great. I'm using windows 7 RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - The Angry One - 2012-10-27 (2012-10-20, 19:18)versus Wrote:(2012-10-20, 18:10)negge Wrote: Just for the record, I just experienced the same thing as @versus. Will revert back to alpha2 for now. Neither self.addItem(item,) or self.addItem(item) fixes the display of scraped roms for me. Am I doing this wrong? RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - DeliriumTremens - 2012-10-27 I have RCB running on XBMC 12 on my pi -- it imports the games in the progress bar, and the various manufacturers and such show up in the filter, but no games actually show up in the items list. Any ideas? Re: RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - versus - 2012-10-27 (2012-10-27, 19:19)The Angry One Wrote:(2012-10-20, 19:18)versus Wrote:(2012-10-20, 18:10)negge Wrote: Just for the record, I just experienced the same thing as @versus. Will revert back to alpha2 for now. Have you changed both instances. there are 2 of them. Re: RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - versus - 2012-10-27 (2012-10-27, 22:09)DeliriumTremens Wrote: I have RCB running on XBMC 12 on my pi -- it imports the games in the progress bar, and the various manufacturers and such show up in the filter, but no games actually show up in the items list.Try looking at this post http://forum.xbmc.org/showthread.php?pid=1218525#pid1218525 |