Como instalo a Revenge of the Titans?

2

Eu fiz o download do arquivo .deb do Revenge of the Titans e instalei-o usando o Ubuntu Software Center.

Agora, quando tento lançá-lo usando o software launcher, nada acontece. Alguma idéia?

O arquivo .deb foi baixado do pacote Humble Indie.

Não consigo ativá-lo a partir do terminal (o comando revenge-of-the-titans diz que o comando não foi encontrado).

Eu também tentei o .tar.gz. Quando eu extraí-lo e executar ./revenge.sh , nada acontece. Nenhuma saída no terminal ou qualquer coisa.

Também defini chmod 777 revenge.sh .

O comando /opt/revengeofthetitans/revenge.sh não fornece nenhuma saída.

Se eu executar gedit /opt/revengeofthetitans/revenge.sh no terminal:

> #!/bin/bash
> #
> # revenge.sh
> #
> ###############################################################################
> 
> SCRIPT="'basename $0'"
> GAMEDIR="${HOME}/.revenge_of_the_titans_1.80" LOGFILE="${GAMEDIR}/${SCRIPT}.log"
> INSTDIR="'dirname $0'" ; cd
> "${INSTDIR}" ; INSTDIR="'pwd'"
> 
> [[ ! -d "${GAMEDIR}" ]] && mkdir -m
> 0755 "${GAMEDIR}"
> 
> JARPATH="patch.jar:RevengeOfTheTitans.jar:data-hib.jar:gfx.jar:fonts.jar:images.jar:music.jar:fx-mono.jar:fx-stereo.jar:gamecommerce.jar:common.jar:spgl-lite.jar:lwjgl.jar:lwjgl_util.jar:jorbis.jar:jinput.jar"
> 
> # XMODIFIERS is cleared here to prevent SCIM screwing up keyboard
> input XMODIFIERS= java \
>     -noverify \
>     -Djava.library.path="${INSTDIR}" \
>     -Dorg.lwjgl.util.NoChecks=true \
>     -Dorg.lwjgl.librarypath="${INSTDIR}" \
>     -Dnet.puppygames.applet.Launcher.resources=/resources-hib.dat
> \
>     -Dnet.puppygames.applet.Game.gameResource=game.hib
> \
>     -XX:MaxGCPauseMillis=3 \
>     -Xms64m \
>     -Xmx375m \
>     -Xincgc \
>     -cp "${JARPATH}" \
>     net.puppygames.applet.Launcher \
>     "$@" \
>     >"${LOGFILE}" 2>&1
> 
> exit 0
> 
> #
> # EOF
> #
> ###############################################################################
    
por Akash 29.04.2011 / 22:01

1 resposta

2

Problema resolvido:

Reinstalando o openJDK do centro de software do Ubuntu corrigido

    
por Akash 30.04.2011 / 15:27