IARL - Deprecated - 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: IARL - Deprecated (/showthread.php?tid=231339) |
RE: Internet Archive ROM Launcher - zachmorris - 2018-01-18 (2018-01-18, 17:17)ozzy667 Wrote: Apologies if the answer to this problem is obvious, but I can't seem to get it to work after reading, watching, and Googling for the past many hours.A couple things to look at for Android (which is the hardest to setup):
RE: Internet Archive ROM Launcher - ozzy667 - 2018-01-19 Quote:Retroarch needs to not be running You Sir are amazing! This was the problem. Hours spent trying to get it working and I never would have thought of that solution in a million years. Funny because a game actually ran but I couldn’t get it to run a second time. I guess retroarch was closed for that lone successful attempt. Thank you for the incredible program and for the reply to my post!!! RE: Internet Archive ROM Launcher - sigfunaris - 2018-01-22 Hey Zack, I'm having a issue with your plugin and kodi-retroplayer. It works fine on my phone but it doesn't work on my Nvidia Shield. Anytime I try to download any game it gives me the option to open only with FBA, Amstrad. It looks like that the file is .zip and doesn't get extracted so for this reason it doesn't offer me the option to open with different emulators RE: Internet Archive ROM Launcher - zachmorris - 2018-01-23 (2018-01-22, 02:18)sigfunaris Wrote: Hey Zack,Which system are you trying? In general, the files are post-processed when necessary: MAME and FBA are the biggest examples of not-post processing since they launch zips directly. RE: Internet Archive ROM Launcher - sigfunaris - 2018-01-25 The shield is an Android box. I tried with any NES, SNES, GBA, and I always get the same problem. It asks me which emulators I wants to use to open the ZIP file and the choices are FBA, Amstrad... Anyway, let me try to post a debug log soon RE: Internet Archive ROM Launcher - lefty420 - 2018-01-25 Hey Zach just checking in to see if you had made any progress with 18. I know it's still early days but since its edging closer to a beta I wondered if you'd managed to solve any of the issues. Kind Regards RE: Internet Archive ROM Launcher - zachmorris - 2018-01-30 So I've looked into the option of skinning. And as far as I can tell, there's no way for the window.xml to reside in a skins standard folder structure. My thought was initially something like:
But the windowxml class doesn't seem to allow this as far as I can tell. The only solution I can come up with would be:
But this would require I ship IARL with skin_box.xml. I don't have a problem doing this, but it just complicates things. Not sure if there's another way around this at the moment, any suggestions? RE: Internet Archive ROM Launcher - malte - 2018-01-30 If I understand your issue correctly I am doing something similar in RCB. When I launch a dialog it looks something like this: Code: skin = util.getConfiguredSkin() util.getConfiguredSkin() just reads the skin that the user selected in Addon settings. This must be the same name as the folders in resources/skins. One folder should be named "Default". You can see the complete folder structure here: https://github.com/maloep/romcollectionbrowser/tree/master/resources/skins This will try to load the skin file in following order: 1. Main skin folder (outside your addon) 2. Selected skin folder in your addon 3. Default skin folder in your addon At least thats the way it works in RCB. Not sure if there might be something different in IARL as it loads as a video addon and not as a script. RE: Internet Archive ROM Launcher - zachmorris - 2018-01-30 Thanks Malte, Thats exactly what I had in mind and what I've determined is probably necessary on how to set this up. I finally got what I wanted to working. This is probably way more complicated than it needs to be, but shows what a bad coder I am:
The only difference between your method and this one is the skinner has the windowxml file in their skin folder, which is good because then they can change it whenever they like. RE: Internet Archive ROM Launcher - malte - 2018-01-30 Quote:The only difference between your method and this one is the skinner has the windowxml file in their skin folder, which is good because then they can change it whenever they like.Same here. If the skinner adds the file to the skin, Kodi will use this one. The skin files shipped with the addon will only be used if there is no file in the corresponding folders of the main skin. But anyway, if it works all is good. Just wanted to point this out. RE: Internet Archive ROM Launcher - zachmorris - 2018-01-30 OK, yeah I see how yours works now. I did make it too complicated. Thanks for the input, i'll just shamefully follow your method. RE: Internet Archive ROM Launcher - bit_creepy - 2018-01-31 Hi Zach, I've installed a fresh copy of the latest Libreelec Remix and installed IARL, set device as Libre Elec Remix and selected Kodi Retroplayer as per your instructions, however it doesn't seem to work 'out of the box' like I expected. When launching a game from SNES section for example, it will download quickly and then the waiting Kodi circle timer will appear and then nothing. It just returns to the list of SNES games. What am I doing wrong or missing? I would be so grateful to get this setup. Much appreciated RE: Internet Archive ROM Launcher - sigfunaris - 2018-01-31 https://paste.ubuntu.com/26496347/ Here's my log, same issue, it looks like the ZIP file doesn't get extracted so the program select only 3 systems (FBA, vice and cap32) as candidate to open the ROM. RE: Internet Archive ROM Launcher - zachmorris - 2018-02-01 This is a confusing log. It looks like you're using an NVidia Shield, not LibrEelec (or LibreElec Remix). So settings wise, you would follow instructions for Android if you were trying to externally launch the game. However, you're trying to use retroplayer. Bear with me (and Garbear) since v18 is still in alpha. Some things aren't 100% both in Kodi and in IARL. I would just ensure all game lists are setup for Retroplayer by:
I don't have an android machine and I'm not sure how well Retroplayer is working for that at this point, however like you said it looks like thats not the problem anyway. The game you're trying to download fails for some reason. I tried the same exact game with the same download settings you have in the log and it works like a charm. I'm guessing that the Kodi Alpha version is mucking it up somehow, although I'd be interested in how. Can you navigate to this file on the machine and see if it's empty, or if you can manually unzip it? From the log I can't tell if it doesn't download properly, or if unzip is failing for some unknown reason. In v17 Kodi this works on two different OS's I've tried. Finally, you could try and add login credentials into IARL. I doubt that will fix it, but you could always try. Although last time I checked the settings system for the Kodi Alpha's wasn't working correctly, and I was told it's best to wait it out. If you can add login credentials in settings, you can see if that makes a difference - hopefully it doesn't. RE: Internet Archive ROM Launcher - zachmorris - 2018-02-01 (2018-01-25, 12:03)lefty420 Wrote: Hey Zach just checking in to see if you had made any progress with 18. I know it's still early days but since its edging closer to a beta I wondered if you'd managed to solve any of the issues. The biggest issue at this point is the settings system. I believe thats 'fixed' now, although I haven't tried any Alpha builds outside of Garbears test builds which still don't have the fix incorporated. |