![]() |
Integrated Video Game Emulators - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Development (https://forum.kodi.tv/forumdisplay.php?fid=32) +--- Forum: Kodi Application (https://forum.kodi.tv/forumdisplay.php?fid=93) +---- Forum: RetroPlayer Development (https://forum.kodi.tv/forumdisplay.php?fid=194) +---- Thread: Integrated Video Game Emulators (/showthread.php?tid=146711) |
Integrated Video Game Emulators - BLKMGK - 2013-03-06 Ned you've got email from me! Garbear that looks great! I'll have to update and compile in a moment if the changes are out there. Keep us posted on your hardware needs too. I'm on Linux and would love an easy solution for controllers, will the Windows code be portable? Integrated Video Game Emulators - umOuch - 2013-03-06 (2013-03-06, 13:00)Ned Scott Wrote: As I don't really want to do money-related stuff for unofficial Team XBMC stuff on the forums, anyone interested in the iOS hardware donation stuff, feel free to e-mail me at [email protected], and I will make sure you know what's going on. Thanks Ned, You've got mail ![]() RE: Integrated Video Game Emulators - BLKMGK - 2013-03-07 Anyone else unable to compile? Just checking - tried everything and figure I can't be the only one. Code: xbmc/view/view.a(GUIViewState.o): In function `CGUIViewState::GetViewState(int, CFileItemList const&)': RE: Integrated Video Game Emulators - drivesoslow - 2013-03-07 (2013-03-07, 00:02)BLKMGK Wrote: Anyone else unable to compile? Just checking - tried everything and figure I can't be the only one. I'm able to compile fine and I running current pull as of now. Try a 'make clean' and then './configure' and 'make' again Whenever I have trouble compiling XBMC I usually run the following and it fixes it 9 out of 10 times at least: Code: make distclean; make clean; ./configure; make Integrated Video Game Emulators - BLKMGK - 2013-03-07 Weird, I did that already and switched to a single thread compile too. I'll keep trying, if someone else can compile I should too - thanks for the response! RE: Integrated Video Game Emulators - drivesoslow - 2013-03-07 OK I'm a liar. After trying a make clean and then compiling I now get the same error as you so it's not just yourself Code: xbmc/xbmc.a(Application.o): In function `CApplication::Initialize()': RE: Integrated Video Game Emulators - garbear - 2013-03-07 Sorry for the bug, too tired to wait for linux to compile last night, it's fixed now RE: Integrated Video Game Emulators - BLKMGK - 2013-03-07 (2013-03-07, 03:19)garbear Wrote: Sorry for the bug, too tired to wait for linux to compile last night, it's fixed now Compiling now, will update if there's an issue! Thanks! ![]() P.S. An SSD makes a huge diff in compile times, if you've not got one even a small one is awesome. RE: Integrated Video Game Emulators - Bootlegninja - 2013-03-07 (2013-03-07, 03:20)BLKMGK Wrote: P.S. An SSD makes a huge diff in compile times, if you've not got one even a small one is awesome. I can vouch for that from when I last compiled the headless xbmc for my shared database. That compiled far faster than I expected. Standard SATA HDD on a 1.6GHz dual core, ~1 hour. SSD on the same system, ~20 minutes I think. RE: Integrated Video Game Emulators - garbear - 2013-03-07 I got an SSD and i7, it'll compile from scratch in 5 mins it's more a battle between make and a 20 hour day ![]() RE: Integrated Video Game Emulators - garbear - 2013-03-08 This news might excite some: We now have analog stick support in retroplayer AND the gui. It took so long as I had to get my new joystick abstraction finished first - I threw out all the old input processing code, so this was a good move on my part. In the keymap.xml's <global> section, change it to Code: <axis id="1" limit="-1">Left</axis> This has the effect that pushing the analog stick >= 50% right will send a single Right action. After an initial delay (500ms) it will then send more Right actions at a 100ms period until the right stick is moved < 50%. This behavior mirrors keyboard keys. For RetroPlayer, I added the following to <FullscreenGame>: Code: <axis id="1" limit="-1">JoypadLeft</axis> If your gamepad driver treats hat presses as analog axes, this will fix all your problems and generally make you more successful in life. Unfortunately, there's a regression where scrolling in menus goes three items at a time ![]() RE: Integrated Video Game Emulators - drivesoslow - 2013-03-08 (2013-03-08, 00:22)garbear Wrote: This news might excite some: We now have analog stick support in retroplayer AND the gui. It took so long as I had to get my new joystick abstraction finished first - I threw out all the old input processing code, so this was a good move on my part. Any affect on the lack of Linux input? RE: Integrated Video Game Emulators - garbear - 2013-03-08 Linux should work. I dropped SDL. I need testers. But hold off, something f*cked up my github branch RE: Integrated Video Game Emulators - Bstrdsmkr - 2013-03-08 I don't have a ton of experience config'ing inputs, but most of the ones I've used have individual settings for deadzone (distance the reading must be from 0 to react), repeat delay (minimum time before another key is sent), and reaction clamping (minimum change in movement required before sending a change in distance). I figured I'd mention those while you were in the area =) RE: Integrated Video Game Emulators - BLKMGK - 2013-03-08 Compiled fine here Garbear! Not sure what hardware you want us to test with though. I'm still scratching my head over what controller to use. I have 360, PS3, and I could slap a Wii in the mix but would prefer one of the others. I'm just not sure how best to set them up in order to test. ![]() |