Kodi Community Forum
[CLOSED] Advanced Launcher - Applications Launcher Addon for XBMC - 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: [CLOSED] Advanced Launcher - Applications Launcher Addon for XBMC (/showthread.php?tid=85724)

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 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453


- paendorz - 2011-08-11

Is there any way to further integrate steam into this plugin?

So far, I've come up with this:
Image

My python knowlegde is basic so I wrote an app in .NET instead in order to get a list of appid's based on what's marked as installed in your steam installation and generate batch files accordingly. After that, I did a quick rewrite of a parser to get the thumbs.

I assume there are no specific parsers for Steam apps but just looking at the code it doesn't seem like a big deal. I think I could write those since it's basically getting these files:

Thumbs:
Code:
http://cdn.steampowered.com/v/gfx/apps/{appid}/header_292x136.jpg
(the one I already wrote)

Fanart:
Code:
http://cdn.steampowered.com/v/gfx/apps/{appid}/page_bg_generated.jpg

Data:
Code:
http://store.steampowered.com/app/{appid} - description meta tag

But this whole setup isnt really confortable. My main concern right now is how feasible would be to get the appid's from within the addon using python and how to make it interact better with the launcher.


- dsimages - 2011-08-11

im a total newb to the gaming side things (pc wise) and would love to get a couple of games on the htpc. I understand what this launcher does and I even when as far as installing am emulator (project64) and downloaded a couple of roms and threw them into the laucher. Getting the emulator and roms into the laucher was fine but when trying to actually lauch a rom i would get display errors and would have to manually launch the rom threw the emulator interface.

anyway, i like being able to play some of the emulated games from the snes days but I would also like to get some of the new titles to play. I guess what I am asking is where would be a good place to start (tutorial wise) on dowloading some of the newer pc (xbox replicas) games and getting them into the launcher.

for those of you downloading the pc games, are you downloading iso's or exe's?
Edit, im running xbmc on an acer revo 3610 2gb ram...


- Fitho - 2011-08-11

Tonight my setup started beeping twice when i start a game from Advanced Launcher. Like the two beeps when u add new thumbs and fanart. Not sure if it is Advanced Launcher, I could also have messed up my setup.
But I noticed a new version 1.5.0 and it "sounds" like advanced launcher. There is also a small message by advanced launcher in the bottom right corner of the screen. Not sure if it always has been there. It says it's launching a game.

Dit I mess up? These beeps are annoying.


- Angelscry - 2011-08-11

Dina Wrote:No clue how that got in there, but even with that changed it does nothing. It loads the emulator fine, but it doesn't load the rom.

That said, out of the five or six emulators I've got working, I like Winkawaks the least. Controls still don't work properly, on top of launcher issues. I might just scrap it altogether and go for a non-launcher solution that works, like Neoragex.
Neoragex is effectively a better NeoGeo AES emulator than Winkawaks. Unfortunately, this last one does not support command line and is not supported anymore. So you will not have the possibility to use it with Advanced Launcher.

I have check again the 3 files you post here... but all seems ok for me. Sorry to not be able to help you more... Sad


- Angelscry - 2011-08-11

paendorz Wrote:Is there any way to further integrate steam into this plugin?

So far, I've come up with this:
Image

My python knowlegde is basic so I wrote an app in .NET instead in order to get a list of appid's based on what's marked as installed in your steam installation and generate batch files accordingly. After that, I did a quick rewrite of a parser to get the thumbs.

I assume there are no specific parsers for Steam apps but just looking at the code it doesn't seem like a big deal. I think I could write those since it's basically getting these files:

Thumbs:
Code:
http://cdn.steampowered.com/v/gfx/apps/{appid}/header_292x136.jpg
(the one I already wrote)

Fanart:
Code:
http://cdn.steampowered.com/v/gfx/apps/{appid}/page_bg_generated.jpg

Data:
Code:
http://store.steampowered.com/app/{appid} - description meta tag

But this whole setup isnt really confortable. My main concern right now is how feasible would be to get the appid's from within the addon using python and how to make it interact better with the launcher.
fr500, have already wrote a large number of tutorials on the integration of the steam platform with Advanced Launcher. He last contribution is here : http://forum.xbmc.org/showpost.php?p=848837&postcount=2310


- Angelscry - 2011-08-11

dsimages Wrote:im a total newb to the gaming side things (pc wise) and would love to get a couple of games on the htpc. I understand what this launcher does and I even when as far as installing am emulator (project64) and downloaded a couple of roms and threw them into the laucher. Getting the emulator and roms into the laucher was fine but when trying to actually lauch a rom i would get display errors and would have to manually launch the rom threw the emulator interface.
What king of display error? Here is the wiki page on Project 64 configuration : http://www.gwenael.org/xbmc/index.php?title=Project64#Windows Also, depending the version of Project64 you are using (v1.6 or v1.7), the launcher argument are different (%rom% or "%rom%").


- paendorz - 2011-08-11

Angelscry Wrote:fr500, have already wrote a large number of tutorials on the integration of the steam platform with Advanced Launcher. He last contribution is here : http://forum.xbmc.org/showpost.php?p=848837&postcount=2310

Yeah, but that's just the execution part, the batch files. And you have to add each one manually. Maybe I wasn't clear on my approach.

I'm talking about potentially adding adding my app features to the launcher. Which are basically to recognize which games are in your local steam setup and adding them to a specific launcher.

What my .NET app basically does is open up a local config file in your steam folder, apply some regular expressions in order to convert Valve's KeyValues to JSON and then parse it to extract the games.

I think it can be done on python, if anyone is willing to code it.


- dsimages - 2011-08-11

I add the emulator path, add the rom Dir, %rom% for the argument, imported roms, ect... Now when I drill down from Addons>Advanced Launcher>N64 Games> I can see my 3 roms with cover-art ect. I click on one of the roms, xbmc minimizes, project64 opens (small windowed) and a cmd terminal behind it, all while showing a small error on top of P64. I can close the error, then in P64 go to file>refresh rom list then click the rom and it starts. I believe it was a direct 3d error ( i cant simulate it right now, the wife is watching a movie). I will post error asap.

I got the 64 emulator from emulator zone and the rom from rom-world. I didnt see a xbox emulator or xbox "roms" on these sites. So I was mainly concerned about how-to/where-to get newer pc/xbox games to download and how to install.


- Angelscry - 2011-08-11

dsimages Wrote:I believe it was a direct 3d error ( i cant simulate it right now, the wife is watching a movie). I will post error asap.

I got the 64 emulator from emulator zone and the rom from rom-world. I didnt see a xbox emulator or xbox "roms" on these sites. So I was mainly concerned about how-to/where-to get newer pc/xbox games to download and how to install.
Could be a direct 3d sharing resource error. I do not clearly remember but I think you will have the possibility to change the graphical rendering plugin of Project64. If you try another plugin, I think it will fix the problem.


- dsimages - 2011-08-11

Angelscry Wrote:Could be a direct 3d sharing resource error. I do not clearly remember but I think you will have the possibility to change the graphical rendering plugin of Project64. If you try another plugin, I think it will fix the problem.

I edited my post above, please read.

I believe your correct of the rendering plugin.. will try again when the wifey's done.


- Angelscry - 2011-08-11

dsimages Wrote:I edited my post above, please read.

I believe your correct of the rendering plugin.. will try again when the wifey's done.
There is no working xbox emulator.


- JustinAiken - 2011-08-11

So I just installed Advanced Launcher on my system, and any kind of scraping, data or image, is giving me addon.py failed...

How do I fix this?


- Angelscry - 2011-08-11

clock2113 Wrote:So I just installed Advanced Launcher on my system, and any kind of scraping, data or image, is giving me addon.py failed...

How do I fix this?
Looks like there is something wrong into your launchers configuration. First which operating system and XBMC version are you using? Next could you please post here the content of the XBMC log file (just after the error occurs) and post it here (using pastebin service for example).


- JustinAiken - 2011-08-11

http://pastebin.com/zbNmBMgB <- launchers.xml
http://pastebin.com/yUwGcnuQ <- xbmc.log

Ubuntu 10.04, XBMC 10.1 Dharma


- dsimages - 2011-08-11

Angelscry Wrote:There is no working xbox emulator.

Lets use COD:Black Ops for example. It is a 360/pc game. These are the types of games I am referring to. PC games that are also xbox games. I understand that I will have to use the pc version since there is no working xbox emulator. I couldn't get CXBX working earlier this evening anyway.

I have no idea what im doing when it comes to pc games. I am asking for a general direction from start to finish. Where to get the games, what format do they need to be in (iso or exe), virtual mounting software, ect..