[Request] - Lolicopocalypse


spn-x

Member
Joined
Aug 31, 2011
Messages
161
I just read about a rogue like game called "Lolicopocalypse".


It's available for Win, Linux, Caanoo and Dingoo..


The Source is also available: http://www.mediafire...5ukzeulcjcdqoaj


forum post :


http://www.ludumdare...eview&uid=14722


Hope somebody can port it to the pandora :)


thx, spn-x


edit.: Here's a pic:


bb95dc0472f33565eb755a9b33330372.jpg
 
Last edited by a moderator:
Got it compiled.


Some issues:


Sound, (if there is any) doesn't seem to work


The game is displayed in a small 320x240 window.
 
Well I got it full screen using Notaz's SDL wizardry, which was just some environment variables I put into a shell script..


but no sound here as well.



Code:
#!/bin/sh

export SDL_VIDEODRIVER=omapdss

export SDL_OMAP_LAYER_SIZE=fullscreen

./lolicopocalypse
 
Last edited by a moderator:
Found how sound works, place files named 0.ogg and 1.ogg into the same folder as the llcpcls binary. The asciiportal menu music is nice :p
 
Last edited by a moderator:
ah the ogg files are bundle in the linux download..
 
Well I'll let you have the pleasure of handling the PXML.. :)


so all yours. , plus I need to run to my gaming night and may not have the time.
 
Last edited by a moderator:
Also just realized I was stretching the game, if you want to keep aspect ratio use this :



Code:
export SDL_VIDEODRIVER=omapdss

export SDL_OMAP_LAYER_SIZE=scaled
 
As the repo is refusing to let me upload the pnd for various meaningless PXML errors, here is the pnd: lolicopocalypse.pnd


Also, I have learned that the repo will not parse PXMLs with a ? in the url for the website tag.


Repo errors:



Code:
[b]PXML INVALID[/b]


--------------------------------------------

Fatal Error 39:

AttValue: " or ' expected

Line: 22

Column: 19


--------------------------------------------

Fatal Error 65:

attributes construct error

Line: 22

Column: 19


--------------------------------------------

Fatal Error 73:

Couldn't find end of Start Tag version line 22

Line: 22

Column: 19


--------------------------------------------

Fatal Error 39:

AttValue: " or ' expected

Line: 22

Column: 19


--------------------------------------------

Fatal Error 65:

attributes construct error

Line: 22

Column: 19


--------------------------------------------

Fatal Error 73:

Couldn't find end of Start Tag version line 22

Line: 22

Column: 19


--------------------------------------------

Error 1872:

The document has no document element.

Line: 0

Column: 0
 

Attachments

  • lolicopocalypse.pnd
    1.3 MB · Views: 167
Last edited by a moderator:
Actually it may not be the question marks..



Code:
 <version major=1" minor="0" release="0" build="1"/> 	 <!--This programs version-->


Your missing a quotation mark on major..
 
Last edited by a moderator:
Back
Top