Beta Advanced Emulator Launcher - Multi-emulator frontend for Kodi - 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: Beta Advanced Emulator Launcher - Multi-emulator frontend for Kodi (/showthread.php?tid=287826) 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
|
RE: Advanced Emulator Launcher - Multi-emulator frontend for Kodi - Wintermute0110 - 2016-10-31 (2016-10-30, 20:35)xphilipp Wrote: Hello, Your are welcomed. Yeah, probably this is a side effect of having launchers in the addon root. I didn't test the corner case of not having any categories at all. Will have a look ASAP. Also, If you just want to have some standalone launchers in addon root maybe you may want to hide <Favourites>, collections, etc. Go to addon settings, "Display" to do so. RE: Advanced Emulator Launcher - Multi-emulator frontend for Kodi - xphilipp - 2016-10-31 (2016-10-31, 09:11)Wintermute0110 Wrote: Also, If you just want to have some standalone launchers in addon root maybe you may want to hide <Favourites>, collections, etc. Go to addon settings, "Display" to do so. I've already done this. But it still displays the "emulator" category, that's why I removed it using the context menu... and discovered this bug. As you say, it's a corner case and the error message is self-explanatory... But it says to report the bug . My quick'n dirty edit: Code: def _command_add_new_launcher(self, categoryID): RE: Advanced Emulator Launcher - Multi-emulator frontend for Kodi - Wintermute0110 - 2016-10-31 @xphilipp Thanks for the patch. I've been thinking and the solution will take me some time. Apart from solving the bug, I have also to modify the context menu of launchers in the addon root and add there the option to create a new category (but not in context menu of launchers inside a category). Otherwise, if user hides all virtual launchers and has zero categories, there is no way of creating a new category! It's not complicated but will take me some time to test all cases. RE: Advanced Emulator Launcher - Multi-emulator frontend for Kodi - MasterPhW - 2016-10-31 I tried your Launcher, since AL always had problems, it was uneasy to scrape new games etc. But there's still some important thing missing for me and since this addon is actively developed, I can finally ask for it to get implemented! At the moment I am using Win10 x64 with Launcher for Kodi to start directly into Kodi. It's a nice little program, which keeps Kodi in focus, replaces the explorer.exe with Kodi etc. But if you want to use a launcher addon, it always get into the way, since it wants to restore Kodis focus and/or steals the input and sound from the games. You can set a few applications to get ignored, but even then, it creates more troubles, than it helps. Only way to get around this for me, was to write a little AHK script, compile it into an exe and use that instead of the original starter. The code is the following: Code: ;game.launcher.script.revision=001 Long story short: Is it possible to include a close Kodi command into AEL aswell, so I don't need to write a little script for all my games? RE: Advanced Emulator Launcher - Multi-emulator frontend for Kodi - xphilipp - 2016-10-31 (2016-10-31, 16:26)MasterPhW Wrote: Long story short: Is it possible to include a close Kodi command into AEL aswell, so I don't need to write a little script for all my games? You'll probably need to write a script anyway... because you have to restart kodi after you close your game. RE: Advanced Emulator Launcher - Multi-emulator frontend for Kodi - RazorFR - 2016-11-01 (2016-10-30, 10:29)Wintermute0110 Wrote: What you mean by MAME console? Running the normal (command line mame). There is a mame.exe dos window running along with the game window. It is also providing details when a rom has "problems" and might not run 100% correctly. (2016-10-30, 10:29)Wintermute0110 Wrote: That is something unrelated to AEL. I like to classify the emulators/apps in 2 categories: "Media center friendly" and "Media center NOT friendly". A media center friendly app/emulator is one which allows to map one key of your joystick to quit the emulator and return to Kodi. Media friendly emulators include MAME, Mednafen and Retroarch (which should cover 99% of the emulation needs for most users). Unfortunately, there are many media center unfriendly emus. Best thing you can do is to go to the emulator forum and ask the feature to remap emulator actions to be binded to joystick/keyboard buttons. It's something easy to code. Yeah you're right. PCSX2 and NullDC. Development has never been done with media centers in mind. NullDC is old and may be replaced. Now PCSX2 that is another story. (2016-10-30, 10:29)Wintermute0110 Wrote: Will add metadata to collections in 0.9.5. Thanks! RE: Advanced Emulator Launcher - Multi-emulator frontend for Kodi - Wintermute0110 - 2016-11-01 @MasterPhW As @xphilipp says, you will always need an script to relaunch Kodi once you quit your game/emulator. ROM Collection Browser and HyperLauncher both have the ability to run in "solo mode", which is what you want, and both of them require scripts to do so. In addition, RCB had a service script (additional addon) to go to RCB once you restart Kodi. In my experience with RCB this was very buggy and I was not happy at all with it. Possible solutions for you: 1) Do not use Launcher for Kodi. Why not keep it simple and put Kodi in the start menu to be automatically started on Windows boot? 2) Contact Launcher for Kodi developer and ask him about your problem. He should be able to assist you better than myself. I've seen in L4K forum thread that the program supports many options about focus... maybe you should ask for help there. RE: Advanced Emulator Launcher - Multi-emulator frontend for Kodi - Wintermute0110 - 2016-11-01 (2016-11-01, 00:57)RazorFR Wrote: Running the normal (command line mame). There is a mame.exe dos window running along with the game window. That's weird... You are using Windows right? In my Windows machine I have never experienced that issue.You using vanilla MAME from http://www.mame.net/ or something else? (2016-11-01, 00:57)RazorFR Wrote: Yeah you're right. PCSX2 and NullDC. Development has never been done with media centers in mind. NullDC is old and may be replaced. Now PCSX2 that is another story. I've never user NullDC (I'm a Linux user) but I am quite happy with Reicast core in Retroarch. It runs DC games faster than Saturn cores! About PCSX2: that emu is now in a development hell... a lot of unportable code, the dynamic recompiler only works in 32 bit mode and making it work for 64 bit means almost a complete rewrite. It's sad it will require a tremendous effort but maybe some coder in the future will tackle the task. RE: Advanced Emulator Launcher - Multi-emulator frontend for Kodi - mac1202 - 2016-11-01 (2016-10-30, 10:29)Wintermute0110 Wrote: That is something unrelated to AEL. I like to classify the emulators/apps in 2 categories: "Media center friendly" and "Media center NOT friendly". A media center friendly app/emulator is one which allows to map one key of your joystick to quit the emulator and return to Kodi. Media friendly emulators include MAME, Mednafen and Retroarch (which should cover 99% of the emulation needs for most users). Unfortunately, there are many media center unfriendly emus. Best thing you can do is to go to the emulator forum and ask the feature to remap emulator actions to be binded to joystick/keyboard buttons. It's something easy to code. To close emulator under linux with lirc i have mapped this script to the back button of my remote, not very elegant but it just work. Code: #!/bin/sh RE: Advanced Emulator Launcher - Multi-emulator frontend for Kodi - kirby1fan - 2016-11-01 Hello, I tested this addon on my desktop pc and it works beautifully. I then tried it on my android tablet. It installed but when I try to launch the launcher it receive an error message saying it had an error and to check the log file. I do have the log file (but don't know how to send/attach it other than copy and pasting here). Is there something wrong with the addon, my kodi, or my tablet or does it not work because it is android not windows? (PS: My tablet is the Galaxy Tab 3 (GT-P5210) running stock Android 4.4.2) -Jeff RE: Advanced Emulator Launcher - Multi-emulator frontend for Kodi - Wintermute0110 - 2016-11-01 (2016-11-01, 15:03)kirby1fan Wrote: Hello, AEL should work and has been tested by some people on Android. The log file will allow me to see the internal of AEL and determine what's causing the problem. Yeah, please post your debug log in pastebin.com and then post in the forum the URL you get. Once I see the log then maybe you will need to do more things and put the log again. RE: Advanced Emulator Launcher - Multi-emulator frontend for Kodi - RazorFR - 2016-11-01 I am using mame 0.161 in windows not vanilla. But I tested with the vanilla 0.179 and it does exactly the same. To be precise, launching a rom from the mame program doesn't open a seperate console window. But launching a rom from Mame AEL launcher does (and of course the game in a seperate window) My argument are nothing fancy > -inipath "xxxx\mame64.exe" "%roms%" The dos prompt is most of the time all black (roms with 0 issue), but it will log any problem from mame, for instance qsound.bin rom needs redump Warning games might not run correctly RE: Advanced Emulator Launcher - Multi-emulator frontend for Kodi - ErAzOr2k - 2016-11-02 Hi, I'm also not able to run launcher in Android It just says "starting game", but nothing happens. see extract of log (Link) RE: Advanced Emulator Launcher - Multi-emulator frontend for Kodi - Wintermute0110 - 2016-11-02 (2016-11-01, 22:46)RazorFR Wrote: I am using mame 0.161 in windows not vanilla. But I tested with the vanilla 0.179 and it does exactly the same. Mmmm... if you use a ROM launcher or standalone launcher, the launcher points to mame.exe and arguments are something like "%rom%" there should be no console window. What is the inipath you mentioned? RE: Advanced Emulator Launcher - Multi-emulator frontend for Kodi - Wintermute0110 - 2016-11-02 (2016-11-02, 08:05)ErAzOr2k Wrote: Hi, There is nothing unusual in that log... maybe problem is with the arguments you use to start Dolphin. Have you tried other emu rather than Dolphin? |