[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 - 2012-07-10 (2012-07-10, 07:18)malte Wrote:Thanks, I'll check that out...Tomkun Wrote:I noticed that in windows when I use popen, that after quitting the game XBMC doesn't get focus back and stays minimised in the task bar. Is that normal behaviour and is it fixable? In the meantime I'm going to have to disable popen.I can't reproduce this here. Not with and not without Popen. Maybe you have to change the "Use fullscreen window" setting in XBMC? Quote:I'm not quite sure what you are doing there; it all looks a bit over my head... I was thinking of something along the lines of how the Home Cinema Experience script manages home automation...Tomkun Wrote:Also a feature request: is it possible to trigger an event using the HTTP API (or JSON) when starting a game? That would allow me to do some really cool stuff with EventGhost!This should already be possible. You could use wget to fire the commands to the json api. On windows you have to install wget.exe yourself, on Linux it should be already available. These are examples of the commands when you want to quit XBMC per json: http://forum.xbmc.org/showthread.php?tid=87563&pid=790523#pid790523 RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - Mus_ - 2012-07-11 I managed to fix the dolphin focus problem. It seems like when dolphin-emu is started in batch mode (-b) it actually must be run from a terminal, otherwise the focus gets screwed up (whyever that is). so I'm now using the following script to start dolphin: Code: #!/bin/bash the parameters "-b -e" for the dolphin command are passed by RCB itself. RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - altoiddealer - 2012-07-13 Running 1.0.5 For some reason, I just can't get RCB to prompt for Disc # For Playstation, I have Disc Indicator enabled and set to "_Disc" All of my multidisc games end with "_Disc1", "_Disc2", etc. All of my multidisc games scraped into the Library, but I'm never prompted for which Disc I would like to launch ...any ideas? RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - malte - 2012-07-13 Tomkun Wrote:I'm not quite sure what you are doing there; it all looks a bit over my head... I was thinking of something along the lines of how the Home Cinema Experience script manages home automation...I will check the Home Cinma part but it looks like there must be done a little bit more to achieve what you want. What do you want to do exactly with EventGhost? Just to get an idea of it. altoiddealer Wrote:Running 1.0.5 For some reason, I just can't get RCB to prompt for Disc #Did you set the Indicator before or after importing the games? It is important to do it before importing the games because otherwise RCB does not recognize the games as multidisc games. RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - Tomkun - 2012-07-15 Well, with EventGhost it's possible to do all kinds of things, but specifically I was thinking of making unified controls for several different Emulators. Most Emus support quit-keys and quick-save/loading, but not all with the same key. If I used eventghost I could make that problem go away and have a single key that did the same thing on all emulators. If it's impossible/difficult to do, then don't worry. These things are possible to do via different methods. RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - pecospete - 2012-07-15 Hi all. Awesome addon. I am wondering how would one go about importing roms for a platform that isn't listed in the platform list. Specifically, I'm looking at adding Sega Model 3 (using the supermodel3.com emulator) roms. I found the "Other" platform, but is there a way one might rename the created collection, to something more intuitive than "other"? RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - altoiddealer - 2012-07-16 (2012-07-13, 07:52)malte Wrote:Tomkun Wrote:I'm not quite sure what you are doing there; it all looks a bit over my head... I was thinking of something along the lines of how the Home Cinema Experience script manages home automation...I will check the Home Cinma part but it looks like there must be done a little bit more to achieve what you want. What do you want to do exactly with EventGhost? Just to get an idea of it. Ohhhhhh i see Thanks for the info, Im going to try rescanning those games in and see what happens RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - Maleficium - 2012-07-17 (2012-07-15, 02:35)pecospete Wrote: Hi all. Awesome addon. You'll need to edit config.xml located in C:\Users\YOUR_USER_NAME\AppData\Roaming\XBMC\userdata\addon_data\script.games.rom.collection.browser\ Open that file with some text editor, take a look where your collection its named "Other" and change it to whatever you like. You'll find something like <RomCollection id="01" name="Other"> RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - malte - 2012-07-18 (2012-07-17, 00:31)Maleficium Wrote:I thought you should get a text dialog to enter a new name for the rom collection. I will check this. If not, this should be fixed.(2012-07-15, 02:35)pecospete Wrote: Hi all. Awesome addon. Anyway, when you don't find the system in RCBs list of platforms you won't get good results from the online scrapers. I guess there must be some more intelligence in the future to handle some of the Arcade systems with emulators other than MAME. RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - Maleficium - 2012-07-18 (2012-07-18, 13:07)malte Wrote:(2012-07-17, 00:31)Maleficium Wrote:I thought you should get a text dialog to enter a new name for the rom collection. I will check this. If not, this should be fixed.(2012-07-15, 02:35)pecospete Wrote: Hi all. Awesome addon. That text dialog was displayed only once after I installed the last test version. For all other collections that I added later it wasn't displayed. About the other point about adding different names in the collection name it depends a bit. The best way to choose the name its check the availability and the name used in the page of the scrapper you want to use. It depends a lot of the amount of info about that system that the source have. RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - altoiddealer - 2012-07-20 (2012-07-13, 07:52)malte Wrote:Tomkun Wrote:I'm not quite sure what you are doing there; it all looks a bit over my head... I was thinking of something along the lines of how the Home Cinema Experience script manages home automation...I will check the Home Cinma part but it looks like there must be done a little bit more to achieve what you want. What do you want to do exactly with EventGhost? Just to get an idea of it. Ok so I deleted the .nfo files, and removed the games from RCB. Then, with disc indicator set to "_Disc" for playstation (games are labeled _Disc1, _Disc2, etc) I scraped the games. This time the window does pop up, however each item on the list is "_Disc" without a number, and they all seem to launch disc 1 RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - blinken - 2012-07-20 Hey I love this program and almost everything is working great, thanks a lot! However, I'm having a problem that I experienced last year and eventually gave up. I thought I'd give it another go. All my emus work great except epsxe. When I try to launch a game epsxe and an empty cmd window open but nothing happens. When I look at the EPSXE window that opens, all the config plugins are missing. Anyone have any idea what might fix this? RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - malte - 2012-07-22 altoiddealer Wrote:Ok so I deleted the .nfo files, and removed the games from RCB. Then, with disc indicator set to "_Disc" for playstation (games are labeled _Disc1, _Disc2, etc) I scraped the games.This is a known bug and will be fixed in next release. Should be available in the next 1-2 weeks. You don't have to reimport anything, it should work then with you current database. blinken Wrote:All my emus work great except epsxe. When I try to launch a game epsxe and an empty cmd window open but nothing happens. When I look at the EPSXE window that opens, all the config plugins are missing.Did you try other PS1 emulators? You could post the xbmc.log here. Maybe there is something worng with the configuration. RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - altoiddealer - 2012-07-22 (2012-07-22, 11:54)malte Wrote:altoiddealer Wrote:Ok so I deleted the .nfo files, and removed the games from RCB. Then, with disc indicator set to "_Disc" for playstation (games are labeled _Disc1, _Disc2, etc) I scraped the games.This is a known bug and will be fixed in next release. Should be available in the next 1-2 weeks. You don't have to reimport anything, it should work then with you current database. Cool, thanks! Looking forward to the update! I love RCB! RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - Sgt.Stedenko - 2012-07-25 Hi! Any update from scraping from Thecoverproject.com? friendly regards |