[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 - versus - 2012-10-15 Basje could you fix additem error with latest nightlies. As you said here it won't be a big change in the code. http://forum.xbmc.org/showthread.php?tid=140682&pid=1203586#pid1203586 RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - Maleficium - 2012-10-17 Thanks by the help Versus but I think that this don't apply in this case, I using XBMC version 11. I was reading all post but didn't understood where the change have to be made. RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - versus - 2012-10-17 (2012-10-17, 02:51)Maleficium Wrote: Thanks by the help Versus but I think that this don't apply in this case, I using XBMC version 11. I was reading all post but didn't understood where the change have to be made. There is no problem with version 11 but with with version 12 (frodo) nightlies starting from mid September with all the games "wiped out". In the link in my previous post it is explained that the problem was introduced by the changes in Python interface. The discussion was whether to keep the changes and alter the code of the affected plugins or leave out the changes, It appears that the consensus was to keep the changes and let the authors make adjustments (according to Basje not complicated ones) to make the broken plugins work again. I think the example in the post is more a conceptual one than real. RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - malte - 2012-10-18 gman3042 Wrote:so the new frodo nightlies seem to be crashing my xbmc on startup.. if i deletethe script.romcollection folder.. it loads up fine.. any ideas?I guess the relevant line is this one: Code: Control has invalid animation type (no condition or no type) blinken Wrote:I believe this has something to do with the fact I can't open a rom from a window either. If I right click and click open in epsxe, the program opens and nothing happens, exactly the same error.Does it work when you open epsxe and load the game from inside the emulator? I am not sure what to check but there must be some log file of the emulator. Maleficium Wrote:I think I had found a bug in MobyGames Scrapper, if no data its present in "Developed by" no data its imported to RCB.Thanks for reporting. I will check that. versus Wrote:There is no problem with version 11 but with with version 12 (frodo) nightlies starting from mid September with all the games "wiped out". In the link in my previous post it is explained that the problem was introduced by the changes in Python interface. The discussion was whether to keep the changes and alter the code of the affected plugins or leave out the changes, It appears that the consensus was to keep the changes and let the authors make adjustments (according to Basje not complicated ones) to make the broken plugins work again. I think the example in the post is more a conceptual one than real.I think this does not apply to RCB. As I understand it in the thread that you linked to, the issue should be fixed in latest nightlies. Only to get a special error handling the code changes that Basje mentioned must be done. This is not necessary in current RCB version as I don't catch the error with a typed exception. Did you already try with one of the latest nightlies? RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - versus - 2012-10-18 (2012-10-18, 13:44)malte Wrote: I think this does not apply to RCB. As I understand it in the thread that you linked to, the issue should be fixed in latest nightlies. Only to get a special error handling the code changes that Basje mentioned must be done. This is not necessary in current RCB version as I don't catch the error with a typed exception. Yes, I have tried with the latest nightly and result is always the same. It is all explained here with the screenshot and it hasn't changed since. Mine is the same. All games scraped appear non-existant. http://forum.xbmc.org/showthread.php?tid=70115&pid=1203802#pid1203802 RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - gman3042 - 2012-10-19 (2012-10-18, 13:44)malte Wrote: [quote=gman3042]I guess the relevant line is this one: Code: Control has invalid animation type (no condition or no type) aeon nox. RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - kossatzd - 2012-10-19 hello again... I'm using the latest nightly and for the past few days, i've been getting an error about executehttpapi being unimplemented. It looks like that's been deprecated and are now supposed to use json calls. The part specifically that is failing (at least for me) is in launcher.py where you are trying to toggle the fullscreen before launching the process. When you got time, could you change those executehttpapi calls to executeJSONRPC calls instead? Thanks RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - versus - 2012-10-19 (2012-10-19, 07:13)kossatzd Wrote: hello again... Do yuu have scraped games displayed properly with the latest nightly. What is you OS? RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - kossatzd - 2012-10-19 (2012-10-19, 07:47)versus Wrote:(2012-10-19, 07:13)kossatzd Wrote: hello again... Yeah they show up fine after I changed a couple lined in gui.py... I was goin to mention that as well but I forgot what line.... I think its items.addItems(item, false)... I had to remove the false parameter. Otherwise it wouldn't show the list. I have it running in Ubuntu 12.04. RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - versus - 2012-10-19 (2012-10-19, 07:55)kossatzd Wrote: Yeah they show up fine after I changed a couple lined in gui.py... I was goin to mention that as well but I forgot what line.... I think its items.addItems(item, false)... I had to remove the false parameter. Otherwise it wouldn't show the list. Thanks. This was just what I was after. I'll try your fix and report back. RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - malte - 2012-10-19 versus Wrote:Yes, I have tried with the latest nightly and result is always the same. It is all explained here with the screenshot and it hasn't changed since. Mine is the same. All games scraped appear non-existant.Yes, I know. But in the very next post another user stated that it works. I will try with the nightlies myself and see if I can fix it. I hope to find some time at weekend. kossatzd Wrote:I'm using the latest nightly and for the past few days, i've been getting an error about executehttpapi being unimplemented. It looks like that's been deprecated and are now supposed to use json calls.Thanks for reporting. I will fix this. RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - versus - 2012-10-19 (2012-10-19, 07:13)kossatzd Wrote: hello again... Predictably same error as yours after editing gui.py and ommiting "FALSE" statements. At least the games show up now. Can changing executehttpapi to executeJSONRPC calls be done with no expertise in python? Don't mind doing some editing if I can fix it myself. RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - negge - 2012-10-20 Just for the record, I just experienced the same thing as @versus. Will revert back to alpha2 for now. RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - versus - 2012-10-20 (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. You can go with higher version (until 15.10 nightly, not sure) if you remove FALSE in both statements that appear twice in gui.py located at C:\Users\xxxx\AppData\Roaming\XBMC\addons\script.games.rom.collection.browser\resources\lib self.addItem(item, False) As for the other error with deprecated HTTP API in latest nigtlies, there was a temporary solution posted in Advanced Launcher thread. Since it refers to the same offending statements it could probably also work for RCB until proper fix is issued (haven't tried it myself). http://forum.xbmc.org/showthread.php?tid=85724&pid=1216825#pid1216825 To fix properly it needs to be changed to something like this. xbmc.executeJSONRPC {"jsonrpc":"2.0","method":"GUI.SetFullscreen","params": "fullscreen"} I have no faintest idea about coding so this may be completely wrong. Could someone suggest proper replacement? RE: [RELEASE] Rom Collection Browser - Browse and launch emulator game ROMs - truthlesshero - 2012-10-20 I just searched through the forum and i didn't find my specific problem... i'm not sure if this is an RCB problem or not, but i'll post it here since that's what i'm using i'm running xbmc (eden stable) on windows 7 64 bit... i'm using the dolphin emulator...when i launch it in windows, it runs flawlessly, no slowdown, graet fps, etc.. but when i launch it through RBC/xbmc, there is a severe slowdown and it lags...my snes emulator doesn't do this...but i believe my psx one (pcsx reloaded) seems to go a tad bit slower as well is this an xbmc or rbc issue? should i try advanced launcher? i love rcb's layout and i'd like to keep it...but if it slows it down.. =-\ thanks for the help! edit: changed skins to a more lightweight skin (aeon nox to transparency)...and now it runs way quicker..too bad, love the look of aeon nox but if it slows down xbmc too much, i might have to ditch it =-\ |