Unfathomable Depths
sláinte
I followed capjustes .pnd creation guide in the Pandora wiki but can't get my .pnd to work. It shows on the desktop with the correct icon but doesn't run.
Here is the call to make the .pnd
Here is my run.sh script
Here is my PXML.xml file
My dir structure is this
[pxml]
[graphics][sounds] pool_new poolpanic.png preview.png (pool_new is the game binary and runs from the terminal)
The .pnd gets created but when double clicked the SD card activity light flashes but the .pnd never starts.
I tried copying the [graphics] and [sounds] dirs to the appdata folder (as suggested by Lobo in another thread) but with the same result.
Anyone point me in the right direction?
Here is the call to make the .pnd
Code:
./pnd_make.sh -p PoolPanic.pnd -d pxml/ -x pxml/PXML.xml -i pxml/poolpanic.png -c
Here is my run.sh script
Code:
set $HOME=.; ./pool_new
Here is my PXML.xml file
Code:
<?xml version="1.0" encoding="UTF-8"?>
<PXML xmlns="http://openpandora.org/namespaces/PXML" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="PXML_schema.xsd">
<application id="PandoraPoolPanic.jimmcleod">
<title lang="en_US">Pandora Pool Panic</title>
<exec command="run.sh"/>
<description lang="en_US">Freeware pool game by Jim McLeod</description>
<previewpics>
<pic src="preview.png"/>
</previewpics>
<icon src="poolpanic.png"/>
<author name="Jim McLeod"/>
<version major="0" minor="1" release="1" build="1"/><!--This programs version-->
<categories>
<category name="Game"><!--category like "Games", "Graphics", "Internet" etc-->
<subcategory name="Sports"/><!--subcategory, like "Board Games", "Strategy", "First Person Shooters"-->
</category>
</categories>
</application>
</PXML>
My dir structure is this
[pxml]
[graphics][sounds] pool_new poolpanic.png preview.png (pool_new is the game binary and runs from the terminal)
The .pnd gets created but when double clicked the SD card activity light flashes but the .pnd never starts.
I tried copying the [graphics] and [sounds] dirs to the appdata folder (as suggested by Lobo in another thread) but with the same result.
Anyone point me in the right direction?