[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
|
- Elviguiero - 2011-11-14 malte Wrote:Should be no problem. Just curious: what do you want to do with it? And what path do you need: complete path including rom file or just the path to the rom folders? The path to the item folder would be perfect, no need of rom file itself, just access to were it is stored. I've tried using ListItem.Path and then figured out it only works with music and videos. It would allow users, depending on their configuration, to access some extras (like music...) stored with the game for exemple. - claimui - 2011-11-14 EDIT: Nevermind, thought I had a fix for my script but it eventually crashed again. - claimui - 2011-11-14 Elviguiero Wrote:Try this: This worked. Thank you! Note for other users: "<texture>$INFO[ListItem.Property(gameinfobig)]</texture>" appears twice in script-Rom_Collection_Browser-main.xml -- once for Info view, and once for Info 2 view. Make sure to change both. Perhaps this should be the default? It's a minor quibble for me, but often people get pretty worked up about XBMC messing with their aspect ratios. - claimui - 2011-11-14 I looked at the auto-play music script some more and made some changes: http://forum.xbmc.org/showpost.php?p=935480&postcount=14 For the purposes of RCB, the main thing I did was to replace the executehttpapi functions with the more straightforward xbmc.getCondVisibility('Player.HasMedia'). I'm not sure why executehttpapi was used in the first place, but maybe it's possible it was interfering with RCB somehow. I've started and restarted RCB about 50+ times now. XBMC hanged once at the beginning -- but I think I might have been using the wrong version of the script at the time. Since then I haven't gotten any more crashes. I will keep testing but I hope this is it. Also my latest results for solo mode and restarting XBMC under Windows: I followed the earlier discussion that said the problem was restarting XBMC while a command prompt (cmd) window is open. The idea behind the "explorer hack" was to call another program to launch XBMC and let cmd close. However the explorer hack was not working for me, and I tried using AutoHotKey to launch XBMC outside of the cmd window, but with mixed results. Today I thought that maybe the problem was that the outside program was launching XBMC too fast -- maybe the cmd window just needed some more time to close. So in my AutoHotKey script, I added a 2-second sleep before launching XBMC. This is working very consistently for me now. I know this is a Windows-specific issue and probably varies from user to user, so I don't expect this to be built into the add-on. Just some advice for other Windows users out there. - DigiTech - 2011-11-14 claimui Wrote:I looked at the auto-play music script some more and made some changes: http://forum.xbmc.org/showpost.php?p=935480&postcount=14 Hi Claimui i have the same problem as you with solo mode, would you be kind to post steps about how did you solved that problem (how to setup auto hothey, where to place files, etc etc, im a rookie on this matter) cause i know a lof of people are having that same issue and lots of em' used the explorer hack but without sucess. Thank you so much for your time. - malte - 2011-11-14 claimui Wrote:Perhaps this should be the default? It's a minor quibble for me, but often people get pretty worked up about XBMC messing with their aspect ratios.I wanted to add an option in one of the next releases. As I played with this some time ago I thought that "keep" looks more ugly than "stretch". But if it is an option everybody can decide what he likes more. DigiTech Wrote:Hi Claimui i have the same problem as you with solo mode, would you be kind to post steps about how did you solved that problem (how to setup auto hothey, where to place files, etc etc, im a rookie on this matter) cause i know a lof of people are having that same issue and lots of em' used the explorer hack but without sucess. Thank you so much for your time.I would also like to add this to the wiki if you could provide me some input. - claimui - 2011-11-14 Sure. I actually only started using AutoHotKey for RCB, so I'm still not that familiar with it yet. But this part is very simple and you can experiment further. 1. Go to http://www.autohotkey.com/download/ and download the first link "Installer for AutoHotkey_L" and install it. 2. Open up Notepad (or other text editor) and make a text file with the following: Code: Sleep, 2000 3. Save this text file somewhere that is easy to type. To start, I suggest putting it somewhere like c:\ or c:\temp -- you can change it later. Name it something like "start_xbmc.ahk". Note: You need to make sure the file actually ends with .ahk. I think Notepad will add a .txt to the end; if so then go back into Windows Explorer and manually rename it to .ahk. 4. Make sure XBMC is not running. Find your start_xbmc.ahk and double-click it. If you did it right, the script will wait two seconds, and then XBMC will start. If Notepad pops back up instead of XBMC, then you didn't rename it correctly -- make sure the file has the .ahk extension. 5. Go to XBMC addons folder, look under addons\script.games.rom.collection.browser, and find applaunch.bat. In Windows 7, this is located in %appdata%\XBMC\addons\script.games.rom.collection.browser. Look at http://wiki.xbmc.org/index.php?title=XBMC_for_Windows_specific_FAQ#Where_is_user_specific_data_stored.3F if you can't find it. 6. Open applaunch.bat in Notepad (or other text editor). Change the last line that starts XBMC to "start c:\temp\start_xbmc.ahk" (replace c:\temp with wherever you put your start_xbmc.ahk file) Some other stuff I've done with AutoHotKey is to lower the Windows system volume before solo mode starts (because otherwise my emulator is way too loud) and raise the volume back before XBMC starts up again. But this is all optional and the point is to tweak the applaunch.bat to your own needs. - claimui - 2011-11-14 malte Wrote:I wanted to add an option in one of the next releases. As I played with this some time ago I thought that "keep" looks more ugly than "stretch". But if it is an option everybody can decide what he likes more.For console screenshots, the image window on Confluence is just wide enough for the screenshot to look noticeably distorted. Also if you use the online scrapers you are bound to end up with some bad/missing images. If your default image is vertical then they can look really bad. It's not a big deal to me personally; I just couldn't figure out where to make the change because the skin .xml is so long. Preview Skin for RCB (New) - Domina - 2011-11-14 Preview Skin Aeon MQ3 for RCB! - Domina - 2011-11-14 It will be released in the update to Aeon MQ3 in the weekend Thanks MarcosQui for Skin! Thanks Malte for Addon RCB! - malte - 2011-11-15 Wow, absolutely cool. I like the ATARI shots most (but maybe just because of the game;-)) BTW: What source did you use to get the "note/votes" information? - Domina - 2011-11-15 Glad you liked it! About the note / votes, taken from GameFAQs - wimpy - 2011-11-15 holy **** Domina That looks amazing Malte: Nice to see you're still at it Downloading and testing newest build very soon - toymachine2009 - 2011-11-15 Is that a wii emulator in that screen shot above ^^ or is a wii hooked up to an htpc? It would be cool if you could hook a wii to an htpc I have a modded wii that has an external hd attached with 150 wii games.. Also is this plugin only for dahrma version? Or will it work on pre-Eden - Domina - 2011-11-15 Pictured above is a wii emulator (Dolphin). And the images were taken with pre eden. |