[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
|
- Rocky5 - 2010-12-24 lestat1977uk Wrote:First of all Fantasic Addon, great work! yeah same you cant seem to rescrape after you have scanned them in which is a pain as it takes hours to scan in stuff, also why do I have duplicates of some roms? there is only one version but they shows twice in the list. Also you may want to redo the interface its a bit cumbersome, pain in the ass to pick another console, maybe use the context menus to switch rom sets? I may even have a look at the skin side of things see how its put together. - malte - 2010-12-24 lestat1977uk Wrote:Just one issue, how do you correct games that have been scrapped incorrectly? Rocky5 Wrote:yeah same you cant seem to rescrape after you have scanned them in which is a pain as it takes hours to scan in stuffAtm this is not supported via UI, but you can do it with editing the config file. And once you have downloaded everything it should be possible to rebuild your database without scraping everything again. During the first scrape RCB creates local nfo files next to your roms for every game (if you not disabled this in settings and RCB has write access to your rom folders). These files can be used for fast rebuilding the database and editing game properties. All images should still be available anyway. 1. Enable option "Always rescan imported games" in Addon settings 2. Enable local nfo scraper and disable online scrapers in config.xml: Code: <RomCollection id="1" name="SNES"> With this settings RCB will run through the complete collection again but only uses the local nfo files without scraping online. If you want to make changes to your game properties you can edit the local nfo files before rescanning the library. You can also limit the rescan process to certain games if you don't want to go through your whole collection again: Code: <RomCollection id="1" name="SNES"> And you can exclude complete rom collections from scan process: Code: <RomCollection id="1" name="SNES"> I know, all this is not very handy atm. But integrating this functionality into the UI is wip. Rocky5 Wrote:also why do I have duplicates of some roms? there is only one version but they shows twice in the list.Never happened to me. Can you give me examples (name of rom file and result in the list)? Maybe the same game for different platforms? Rocky5 Wrote:Also you may want to redo the interface its a bit cumbersome, pain in the ass to pick another console, maybe use the context menus to switch rom sets?We want to rework parts of the navigation and panels, also want to add a context menu. Just discussing the new structure outside the forum, so if you have any ideas, this is the time. But the filters is one of the things that I did not thought to change. The filters are combined (you can filter for console AND genre etc.) so I would like to keep them visible all together. Putting them in a context menu or in the left panel (like in Confluence Video views) would not work in my oppinion. What I don't like about it is the way you get from the game list to the filter panel. Sometimes you have to navigate left or right, sometimes up or down. But this is a problem that occurs all over XBMC in my eyes. Of course it is depending on the direction of navigating through the current list. In Info2 View you scroll up and down, so the only way to get somewhere else is left and right. In Info2 or Thumbs View it is just the other way. Rocky5 Wrote:I may even have a look at the skin side of things see how its put together.This would be great. When I see what mcborzu has done with his skins I want to throw mine away. If you have any questions about it just let me know. (There also is a quick overview in the Wiki if you are interested) - Rocky5 - 2010-12-24 OK making my own skin for this 1 view but it will be sleek and sexy also only uses 2 4x4 image . will add toggle for certain functions ie. fanart stuff like that. for my skin to work I need this added to the GUI.py please, this would be useful to any ways. Code: if(action.getId() in ACTION_MOVEMENT_LEFT or action.getId() in ACTION_MOVEMENT_RIGHT): preview of my skin. reworked the function menu. - malte - 2010-12-25 I think we can achieve this with just removing the direction check on top. The code in trunk will look like this in the next version (the commented line will be removed): Code: #if(action.getId() in ACTION_MOVEMENT_UP or action.getId() in ACTION_MOVEMENT_DOWN): But do you think this is so much easier to handle than the menu on the top? I am planning to add a lot more options that should be available via context menu (Add Rom Collection, Edit Rom Collection, Delete Game, Edit Game, Mark As Played, Mark As Favorite, ...). I guess it will be a long list if this menu additionally contains the filters. How do you launch the menu? Will it conflict with launching a context menu in future (pressing C)? - Rocky5 - 2010-12-25 malte Wrote:I think we can achieve this with just removing the direction check on top. The code in trunk will look like this in the next version (the commented line will be removed): You press left on the list and it slides up, then you use up or down to navigate the options then left or right to pick one enter to exit (unless your on adv options) I will try that code later on. Merry Christmas every one. - ShadeBlack - 2010-12-25 ok I've successfully installed rcb with snes roms using zsnes. using this image for my main menu item in confluence as a favourite, titled "Games". Now I'm curious as to how to get genesis / sega stuff on there. Gens and Fusion is not in the repository it seems. how can I get them? and after that what sort of parameters would i have to add to the config.xml? any advice? - malte - 2010-12-25 ShadeBlack Wrote:Now I'm curious as to how to get genesis / sega stuff on there.Not sure what you mean with "Gens and Fusion are not in the repo"? I guess I got my Fusion here. But I am not 100% sure anymore. A config for SNES, Sega 32 and Sega Genesis may look like this: Code: <config> - malte - 2010-12-26 There is a new version available: 0.7.11. Changes: General:
Xbox related:
This release is mostly Xbox related. The configuration wizard sets all Xbox related properties automatically and skips all steps on Xbox that are not necessary (emuParams for all games, filemask for Xbox games). But the most important change happened in addon.xml: Code: <addon carabalb decided to contribute on a more regular basis and I am happy not to be alone in the provider list anymore - rob87 - 2010-12-26 Hi, can anybody tell me how i can change the viewtype? I can only use the files view. I use night skin which should support landscape view. Like this - malte - 2010-12-26 If you are in files view navigating to left or right should make the button panel visible. It will appear at the bottom and it contains the "change view" button. - rob87 - 2010-12-27 yes, but nothing happens when i press the "View: Files" button. - Rocky5 - 2010-12-27 rob87 Wrote:yes, but nothing happens when i press the "View: Files" button. The plugin uses its own built in views, though it would be nice if you could use skins views. Quote:#if(action.getId() in ACTION_MOVEMENT_UP or action.getId() in ACTION_MOVEMENT_DOWN): doesn't work. Up, Down, Left and Right do nothing now on the Filters. - BORIStheBLADE - 2010-12-27 Hey guys I kind of need some help. I'm trying to get back to the menu where you chose the directories for the files. I read in the doc's you are supposed to throw away the RCB folder, but I don't see the folder in the addons folder. I have also deleted the addon within XBMC thinking I can start all over, but this still didn't let me do that. Am I looking in the right place? A little side note, Maybe making a "clear all data" in the options will make this easier? Thanks guys - malte - 2010-12-27 rob87 Wrote:yes, but nothing happens when i press the "View: Files" button.Strange. Do you see errors in xbmc.log when you try this? What version of Night and RCB are you using? Rocky5 Wrote:doesn't work.Could you also check xbmc.log when trying this? If it does nothing then it seems to be a general problem (maybe wrong indentation?). BORIStheBLADE Wrote:I'm trying to get back to the menu where you chose the directories for the files. I read in the doc's you are supposed to throw away the RCB folder, but I don't see the folder in the addons folder.It is in your userdata/addon_data folder. Check this for special://home to find it on your system. BORIStheBLADE Wrote:A little side note, Maybe making a "clear all data" in the options will make this easier?Yes, this will be available soon. Atm I am working on context menu integration and this will cover some of these options. "Clear all data" will be one of them in the future. - ShadeBlack - 2010-12-27 first off I'd like to thank malte for working on this so extensively, and doing such an amazing job with it, and it's audience. secondly, I'd like to suggest something. Malte, you said before you realised that the scanning of the roms should stop if there is no read/write access. similarly, I think the scanning should still import the game if it can't find images. for example, I scanned a game today which had a description, boxart but no fanart backdrop. it didn't import the game because it couldn't find the fanart. perhaps if rcb could just import the game anyway, then we can manually add the images later, that would be an easier solution. I'd also like to suggest the ability to turn fanarts off entirely. I'd personally like just the boxart and decription for a more simplistic view. I feel that fanarts have always slowed down navigation, not just with rcb, but also in tv shows and movie libraries. thirdly, I managed to get gens working. the repository doesn't have it though anymore. so to anyone wondering, you have to download and transfer a debian version of it into your /home folder and use putty command prompt: cd /home sudo dkpg -i "gens filename".deb if you need it's dependencies it will tell you. parameters I used were --quickexit "%ROM%" with file types *.zip, *.iso, *.smd once gens is loaded it will be in windowed mode. use alt+"underlined letter" for the toolbar options for example alt+f for "file", then use the keyboard to navigate the toolbar options and set your gamepad buttons. exit the toolbar with esc. use alt+enter to fulscreen. quickexit means pressing escape during playback of roms will close gens and return to xbmc lvie. if you load gens again, it will still be in fullscreen mode. |