RetroPlayer Test Builds (updated for Nexus) - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Game support (https://forum.kodi.tv/forumdisplay.php?fid=292) +--- Thread: RetroPlayer Test Builds (updated for Nexus) (/showthread.php?tid=173361) 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
|
RE: RetroPlayer Test Builds (updated for Isengard) - a1rwulf - 2015-12-30 (2015-12-30, 14:59)charlie0440 Wrote: bibi, I made that OE build and although I am not running that exact one at the moment, I tried a SNES game on my current build last night and all worked fine. I'll try to have a look at it. RE: RetroPlayer Test Builds (updated for Isengard) - bibi - 2015-12-30 Thanks Charlie0440 ! I can test on x64_linux and raspberry pi 2. Here is my Logitech_Logitech_Dual_Action_12b_6a.xml, i dont know how to push it on git repository : Code: <?xml version="1.0" ?> Bibi RE: RetroPlayer Test Builds (updated for Isengard) - charlie0440 - 2015-12-31 New OpenElec Generic 64 build here, based on tip of OpenElec 6.0 and garbears kodi from retroplayer-15.2 branch There are some slight alterations, mainly caused by me enabling mupen64, it compiled fine but the analogue stick is not working for me. Build details can be seen from my https://github.com/CharlieMarshall/OpenELEC.tv/commits/retroplayer-bk2repo: @a1rwulf if you have a minute can you look at my repo and see if my changes would cause the analogue stick to stop working? @bibi, I just quickly tested snes, nes, n64 and genesis and they all worked fine. @garbear, since the splitting of bsnes-mercury to accuracy, balanced and performance, can you tell me how to compile it. I have created what I believe are the necessary scripts (here) for the game.libretro.bsnes-mercury-etc but since the recent commit which changes: Code: -find_package(libretro-bsnes-mercury REQUIRED) where can I find libretro-bsnes-mercury-accuracy, while previously libretro-bsnes-mercury was being sourced from https://github.com/libretro/bsnes-mercury. any help appreciated RE: RetroPlayer Test Builds (updated for Isengard) - garbear - 2015-12-31 (2015-12-31, 20:03)charlie0440 Wrote: @garbear, since the splitting of bsnes-mercury to accuracy, balanced and performance, can you tell me how to compile it. I have created what I believe are the necessary scripts (here) for the game.libretro.bsnes-mercury-etc but since the recent commit which changes: The upstream is the same libretro-bsnes-mercury repo. It is passed a profile name at compile time, see https://github.com/kodi-game/game.libretro.bsnes-mercury-accuracy/commit/9a6c1dc#diff-c9488b11aa4559de8b2458972511c3ccR21 Libretro add-ons have two parts: the add-on fluff, game.libretro.bsnes-mercury-accuracy, and the libretro core libretro-bsnes-mercury-accuracy. You've missed the second part at packages/mediacenter/kodi-binary-addons/libretro-bsnes-mercury-accuracy, et. al. When you copy-paste the package.mk for https://github.com/CharlieMarshall/OpenELEC.tv/blob/6d1f58d/packages/mediacenter/kodi-binary-addons/libretro-bsnes-mercury/package.mk , change the command "make" to "make profile=accuracy", and balanced and performance for the others. RE: RetroPlayer Test Builds (updated for Isengard) - garbear - 2015-12-31 Also, in case you missed it, new builds have been posted with additional cores. Including the three bSNES Mercury profiles, Snes9x and Snes9x Next, and MAME as well. RE: RetroPlayer Test Builds (updated for Isengard) - garbear - 2015-12-31 (2015-12-30, 18:08)bibi Wrote: Here is my Logitech_Logitech_Dual_Action_12b_6a.xml, i dont know how to push it on git repository : Added in https://github.com/kodi-game/peripheral.joystick/commit/36c69a0 . thanks RE: RetroPlayer Test Builds (updated for Isengard) - grumpygamer - 2016-01-01 When as core port says "included in Linux and OSX" does that include Openelec? Thanks RE: RetroPlayer Test Builds (updated for Isengard) - bibi - 2016-01-01 I just tested your last build, i get the same issue. Wonder if it isnt because my roms are on a nfs share... Will try again this afternoon RE: RetroPlayer Test Builds (updated for Isengard) - bibi - 2016-01-01 Ok, with roms in local, it works! For now, Nes, SNES games works. GameCube games works a little bit, mainky access to the menu. Playstation games are in good shape, only issue is wth bios not found, i put them in the same directory than the roms. In general, its really in a good shape, strange to find back the old games, specially on a big screen. Thank you all. Bibi RE: RetroPlayer Test Builds (updated for Isengard) - holydhaliwal - 2016-01-01 (2015-10-28, 02:22)holydhaliwal Wrote:(2015-10-27, 22:53)garbear Wrote: Testers: I've rebased on 15.2. Windows and OSX have been built by jenkins and are being uploaded to the mirrors I still get the same behaviour on the latest OS X build. Sorry if it seems like I'm pestering haha, just curious as to where the problem lies. Is there some option to manually assign specific file extensions to specific emulator cores? Or some other way to force kodi to attempt to open a specific file with a specific emulator? RE: RetroPlayer Test Builds (updated for Isengard) - charlie0440 - 2016-01-02 (2015-12-31, 21:00)garbear Wrote: When you copy-paste the package.mk for https://github.com/CharlieMarshall/OpenELEC.tv/blob/6d1f58d/packages/mediacenter/kodi-binary-addons/libretro-bsnes-mercury/package.mk , change the command "make" to "make profile=accuracy", and balanced and performance for the others.Thanks, thats what I needed. Got the mercury split all compiled now. Next issue ... Adding the snes9x & snes9x-next cores, I added these under this commit The libretro-snes9x and libretron-snes9x-next cores compiled fine and the .so files are there. But when it comes to the game.libretro.snes9x & game.libretro.snes9x-next I get a compile error, Code: -- Install configuration: "" log files: snes9x & snes9x-next RE: RetroPlayer Test Builds (updated for Isengard) - Rollingstone - 2016-01-02 (2016-01-01, 18:44)bibi Wrote: Ok, with roms in local, it works! I have the same experience with roms on my samba-share. Isn't it weird that roms should be local? RE: RetroPlayer Test Builds (updated for Isengard) - Scourge - 2016-01-02 Havent tried OE builds lately, but on my Windows machine, this is not the case. Playing roms from my NAS works just fine. RE: RetroPlayer Test Builds (updated for Isengard) - Rollingstone - 2016-01-02 (2016-01-02, 12:40)Scourge Wrote: Havent tried OE builds lately, but on my Windows machine, this is not the case. Playing roms from my NAS works just fine. I can't verify on windows, but both my OSX and OpenElec builds (most recent) won't work. Nevermind, I can play from local roms. BlueMSX works, but no controller - Rollingstone - 2016-01-02 I have my MSX games working now, BIOS is installed (and I can make a package or something to make it installable like an addon if somebody tells me how to do this). However, my controller doesn't work. So still I cannot play my MSX games! There is no controller to configure under the input menu, I think that is the problem. Should I manually add my Xbox360 controller to a configuration file? I have found that every controller configuration goes to an .xml file under addon_data/peripheral.joystick/resources/buttonmaps/xml/cocoa and then there is Xbox_360_Wired_Controller_v1118_p654_15b_6a.xml with all the configurations. However, no msx controller is defined, so I concluded that could be the problem. Anybody an idea what lines I could add to the xml file to control BlueMSX? |