[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 - 2014-04-14 Komerad Wrote:When I lauch a rom with retroarch-phoenix it works.As a start you should change you emuparams from Code: -f -L /usr/lib/libretro-genesisplusgx.so %ROM% Code: -f -L /usr/lib/libretro-genesisplusgx.so "%ROM%" joebloggs12 Wrote:it starts gets to about 3% and never progresses any furtherIn this case you should see an error in the log file. Please post a log file here if you can reproduce this issue. joebloggs12 Wrote:im new to xmbc so if you need me to check any log files please let me know where they areSee here joebloggs12 Wrote:ok after trying different things,I've figured if I change the default skin in xbmc it starts working but very slowly (probably 30 minutes for 54 games)The scraper is not very fast at all as it tries to scrape from different sites. And downloading artwork may also take some time. The archive.vg scraper is broken atm, so you could set this one to "None". To use the mobygames scraper you should update to latest RCB test version as there have been some changes on the site since I released the last version to the XBMC repo. RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - Nick.IA - 2014-04-14 I am new to XBMC and Rom Collection Browser. I am running an Intel Nuc with Windows 8. When I launch a game it works just fine. The issue I am having is that when I close down the emulator to go back to XBMC it is no longer Full screen and I have to hit alt-enter to go full screen. Doesn't seem to be a big issue but I am trying to get this thing to a point where I dont need the keyboard. (and very easy for the wife to use) Thanks RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - Komerad - 2014-04-14 Thanks Malte this worked. RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - teeedubb - 2014-04-14 (2014-04-14, 17:28)Nick.IA Wrote: I am new to XBMC and Rom Collection Browser. I am running an Intel Nuc with Windows 8. When I launch a game it works just fine. The issue I am having is that when I close down the emulator to go back to XBMC it is no longer Full screen and I have to hit alt-enter to go full screen. Doesn't seem to be a big issue but I am trying to get this thing to a point where I dont need the keyboard. (and very easy for the wife to use) Use 'solo mode' (which quits xbmc when running the emulator) and add the option to always start xbmc in fullscreen in advancedsettings.xml. RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - malte - 2014-04-15 (2014-04-14, 21:29)teeedubb Wrote:(2014-04-14, 17:28)Nick.IA Wrote: I am new to XBMC and Rom Collection Browser. I am running an Intel Nuc with Windows 8. When I launch a game it works just fine. The issue I am having is that when I close down the emulator to go back to XBMC it is no longer Full screen and I have to hit alt-enter to go full screen. Doesn't seem to be a big issue but I am trying to get this thing to a point where I dont need the keyboard. (and very easy for the wife to use) Or you could try to increase the pre and post launch delay in addon settings. Maybe this also helps to solve the issue. RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - IncognitoMan - 2014-04-16 malte: In regards to the "&&" I figured a solution using precmd but obviously needs the same changes as before ( same issue with encode settings ) Once that is done then the root command ( as long as you have a rooted device ) will work. For reference: Code: <emulatorCmd>/system/bin/su</emulatorCmd> Would you be able to fix it so precmd also works? ( and maybe add a precmd variable to the autoconfig? ) RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - malte - 2014-04-17 (2014-04-16, 23:25)IncognitoMan Wrote: malte:Oh sorry, I forgot that you also reported this issue. I had a discussion about it with another user and we solved it by using "&&" instead of "&&" in the config.xml file. Maybe you could try if this works for you too? Anyway, I will make sure that the encoding works for pre and post command but maybe I can skip adding it to the autoconfig file. RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - IncognitoMan - 2014-04-17 (2014-04-17, 09:31)malte Wrote:(2014-04-16, 23:25)IncognitoMan Wrote: malte:Oh sorry, I forgot that you also reported this issue. I had a discussion about it with another user and we solved it by using "&&" instead of "&&" in the config.xml file. Maybe you could try if this works for you too? Anyway, I will make sure that the encoding works for pre and post command but maybe I can skip adding it to the autoconfig file. Ahh that does indeed work. I should have a "complete" updated autoconfig for you soon ( implying I actually get time to finish it >_> )... it's more standard android oriented than ouya oriented this time. RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - ZexisStryfe - 2014-04-17 Any update on the archive.vg scraper issues? When I scrape with it on I get invalid images and no info- when I scrape with it off I get info an no images... RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - djm1319 - 2014-04-19 What I would like to do is create a number of shortcuts for Steam that start xbmc on 'Movies' or 'Games' or even subdirectories or locations found in programs like Advanced Launcher. An example of this: 'Playstation 1' or 'Nintendo Entertainment System' since those are both subdirectories in Advanced Launcher Just an idea I came up with while finishing up my setup. All help is appreciated. RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - Komerad - 2014-04-19 (2014-04-15, 07:12)malte Wrote:(2014-04-14, 21:29)teeedubb Wrote:(2014-04-14, 17:28)Nick.IA Wrote: I am new to XBMC and Rom Collection Browser. I am running an Intel Nuc with Windows 8. When I launch a game it works just fine. The issue I am having is that when I close down the emulator to go back to XBMC it is no longer Full screen and I have to hit alt-enter to go full screen. Doesn't seem to be a big issue but I am trying to get this thing to a point where I dont need the keyboard. (and very easy for the wife to use) Had the same problem add to that that the usb keyboard and audio stop working too. Solo mode : games don't launch anymore : Code: 09:17:11 T:2609867584 NOTICE: RCB_INFO: Begin launchEmu Adding : <fullscreen>true</fullscreen> to advancedsettings.xml did it. Thx! Still strugling with the audio now. When I exit rcb the audio is gone (not that i have any sound in retroarch, what worked on previous installs doesnt work anymore now.) I have to go to system and select the audio again. (It shows the correct audio but i need to reselect it in ui for it to start working again.) Since, changing alsa.conf, asound, retroarch.cfg does not help this time : Code: **** List of PLAYBACK Hardware Devices **** Is there 1 thing that works on all systems (xbmcbuntu) just by knowing this? (hw:1,3) Code: aplay -Dplughw:1,3 /usr/share/sounds/alsa/Front_Center.wav i do get xbmc and media sound perfectly. http://www.alsa-project.org/db/?f=79203c321aa6a7ab536f7fbc9a2027e051de1b8f RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - billyc666 - 2014-04-19 (2014-04-14, 07:26)malte Wrote:Komerad Wrote:When I lauch a rom with retroarch-phoenix it works.As a start you should change you emuparams from thank you for your response , im getting there now with more success , one thing I cant figure now is I have one game where the info stays blank even though ive manually added it to the nfo file , does rcb store this in another place as well as the nfo files I have the nfo's inside my games folder all seem ok when I manually edit them except this one, ive tried recreating a new one for it by rescraping the game but still the problem persists. can I update to the latest rcb without losing my setup from version 2.10 thanks again for your reply RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - Komerad - 2014-04-19 Sound works after screwing around all afternoon. Had some side effects but those are gone too now. Hop it stay's stable. No real clue what exactly fixed it. EDIT : Doing a differet system now. Same problem with the sound. Got through same stuff but no succes on there. Why is this part so arbitrary RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - billyc666 - 2014-04-20 new dilemma. im sure its a setting I have wrong, what I need is to be able to add artwork and vids after I have imported the games. it wont seem to add anything. I am intentionally scraping with maws scraper even though I know it wont find any art work or info for the games. it just gives me a games list fast, but now I need to be able to add my artwork any ideas **EDIT** after starting from scratch several times it always seems to findo some artwork that isn't from my collection, its not scraping online im using local artwork with media mask %GAME%.* if I could figure how to sort this problem , everything else works fine. just box art and vids wont import from local library does anyone know what will batch convert to jpeg that is compatible with rcb first problem was photoshop jpegs was not compatible , just got to figure why vids don't play now RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - san7a - 2014-04-21 I'm having what seems to be a simple issue of changing the view from a vertical list to anything else... The view menu at the bottom of the screen as per https://code.google.com/p/romcollectionbrowser/wiki/ChangeViews isn't visible, and there doesn't seem to be any way throughout the menu system to change the view from vertical list to horizontal or otherwise... What am i doing wrong here?! |