1 Commits

Author SHA1 Message Date
dfb4919a3e Prueba de branch 2022-09-07 09:20:25 +02:00
486 changed files with 3959 additions and 66477 deletions

23
.gitignore vendored
View File

@@ -1,13 +1,12 @@
.vscode
*data/config/config.txt
*stats.txt
*.DS_Store
thumbs.db
*.exe
*_macos
*_linux
*.dmg
*.tar.gz
*.zip
*.app
*_debug*
bin
data/config.bin
data/score.bin
dll
docs
icon
releases
resources
scripts
*.opk
*.DS_Store

144
Makefile
View File

@@ -1,142 +1,12 @@
executable = jaildoctors_dilemma
source = source/*.cpp source/common/*.cpp
appName = JailDoctor's Dilemma
releaseFolder = jdd_release
version = v1.06.2
# Release names
windowsRelease = $(executable)-$(version)-win32-x64.zip
macosIntelRelease = $(executable)-$(version)-macos-intel.dmg
macosAppleSiliconRelease = $(executable)-$(version)-macos-apple-silicon.dmg
linuxRelease = $(executable)-$(version)-linux.tar.gz
windows:
@echo off
g++ $(source) -std=c++11 -Wall -Os -lmingw32 -lws2_32 -lSDL2main -lSDL2 -ffunction-sections -fdata-sections -Wl,--gc-sections -static-libstdc++ -Wl,-subsystem,windows -o "$(executable).exe"
strip -s -R .comment -R .gnu.version "$(executable).exe" --strip-unneeded
windows_debug:
@echo off
g++ $(source) -D DEBUG -std=c++11 -Wall -Os -lmingw32 -lws2_32 -lSDL2main -lSDL2 -ffunction-sections -fdata-sections -Wl,--gc-sections -static-libstdc++ -Wl,-subsystem,windows -o "$(executable)_debug.exe"
strip -s -R .comment -R .gnu.version "$(executable)_debug.exe" --strip-unneeded
windows_release:
@echo off
# Create release folder
powershell if (Test-Path "$(releaseFolder)") {Remove-Item "$(releaseFolder)" -Recurse -Force}
powershell if (-not (Test-Path "$(releaseFolder)")) {New-Item "$(releaseFolder)" -ItemType Directory}
# Prepare data folder
powershell Copy-Item -Path "data" -Destination "$(releaseFolder)" -recurse -Force
powershell if (Test-Path "$(releaseFolder)\data\room\map.world") {Remove-Item "$(releaseFolder)\data\room\map.world" -Recurse -Force}
powershell if (Test-Path "$(releaseFolder)\data\room\standard.tsx") {Remove-Item "$(releaseFolder)\data\room\standard.tsx" -Recurse -Force}
# Copy root files
powershell Copy-Item "LICENSE.txt" -Destination "$(releaseFolder)"
powershell Copy-Item "README.md" -Destination "$(releaseFolder)"
powershell Copy-Item "release\*.dll" -Destination "$(releaseFolder)"
# Build
g++ $(source) -std=c++11 -Wall -Os -lmingw32 -lws2_32 -lSDL2main -lSDL2 -ffunction-sections -fdata-sections -Wl,--gc-sections -static-libstdc++ -Wl,-subsystem,windows -o "$(releaseFolder)/$(executable).exe"
strip -s -R .comment -R .gnu.version "$(releaseFolder)/$(executable).exe" --strip-unneeded
# Create ZIP
powershell if (Test-Path $(windowsRelease)) {Remove-Item $(windowsRelease)}
powershell Compress-Archive -Path "$(releaseFolder)"/* -DestinationPath $(windowsRelease)
# Remove folder
powershell if (Test-Path "$(releaseFolder)") {Remove-Item "$(releaseFolder)" -Recurse -Force}
mkdir bin
g++ -std=c++11 -Wall -O2 -lSDL2 -lmingw32 -lSDL2main -mwindows source/*.cpp -o bin/$(executable).exe
macos:
clang++ $(source) -std=c++11 -Wall -Os -lSDL2 -ffunction-sections -fdata-sections -o "$(executable)"
macos_debug:
clang++ $(source) -D DEBUG -std=c++11 -Wall -Os -lSDL2 -ffunction-sections -fdata-sections -o "$(executable)_debug"
macos_release:
# Remove data and possible data from previous builds
rm -rdf "$(releaseFolder)"
rm -rdf Frameworks
rm -f tmp.dmg
rm -f "$(macosIntelRelease)"
rm -f "$(macosAppleSiliconRelease)"
# Create folders
mkdir -p "$(releaseFolder)/$(appName).app/Contents/Frameworks"
mkdir -p "$(releaseFolder)/$(appName).app/Contents/MacOS"
mkdir -p "$(releaseFolder)/$(appName).app/Contents/Resources"
mkdir -p Frameworks
# Copy folders
cp -R data "$(releaseFolder)/$(appName).app/Contents/Resources"
cp -R release/SDL2.framework "$(releaseFolder)/$(appName).app/Contents/Frameworks"
cp -R release/SDL2.framework Frameworks
# Delete data
rm -f "$(releaseFolder)/$(appName).app/Contents/Resources/data/room/map.world"
rm -f "$(releaseFolder)/$(appName).app/Contents/Resources/data/room/standard.tsx"
# Copy files
cp release/*.icns "$(releaseFolder)/$(appName).app/Contents/Resources"
cp release/Info.plist "$(releaseFolder)/$(appName).app/Contents"
cp LICENSE.txt "$(releaseFolder)"
cp README.md "$(releaseFolder)"
# Create links
ln -s /Applications "$(releaseFolder)"/Applications
# Build INTEL
clang++ $(source) -D MACOS_BUNDLE -std=c++11 -Wall -Os -framework SDL2 -F ./Frameworks -ffunction-sections -fdata-sections -o "$(releaseFolder)/$(appName).app/Contents/MacOS/$(executable)" -rpath @executable_path/../Frameworks/ -target x86_64-apple-macos10.12
# Build INTEL DMG
hdiutil create tmp.dmg -ov -volname "$(appName)" -fs HFS+ -srcfolder "$(releaseFolder)"
hdiutil convert tmp.dmg -format UDZO -o "$(macosIntelRelease)"
rm -f tmp.dmg
# Build APPLE SILICON
clang++ $(source) -D MACOS_BUNDLE -std=c++11 -Wall -Os -framework SDL2 -F ./Frameworks -ffunction-sections -fdata-sections -o "$(releaseFolder)/$(appName).app/Contents/MacOS/$(executable)" -rpath @executable_path/../Frameworks/ -target arm64-apple-macos11
# Build APPLE SILICON DMG
hdiutil create tmp.dmg -ov -volname "$(appName)" -fs HFS+ -srcfolder "$(releaseFolder)"
hdiutil convert tmp.dmg -format UDZO -o "$(macosAppleSiliconRelease)"
rm -f tmp.dmg
# Remove data
rm -rdf Frameworks
rm -rdf "$(releaseFolder)"
mkdir -p bin
g++ -std=c++11 -Wall -O2 source/*.cpp -o bin/$(executable)_macos -lSDL2
linux:
g++ $(source) -std=c++11 -Wall -Os -lSDL2 -ffunction-sections -fdata-sections -Wl,--gc-sections -o "$(executable)"
strip -s -R .comment -R .gnu.version "$(executable)" --strip-unneeded
linux_debug:
g++ $(source) -D DEBUG -std=c++11 -Wall -Os -lSDL2 -ffunction-sections -fdata-sections -Wl,--gc-sections -o "$(executable)_debug"
strip -s -R .comment -R .gnu.version "$(executable)_debug" --strip-unneeded
linux_release:
# Remove data
rm -rdf "$(releaseFolder)"
# Create folders
mkdir -p "$(releaseFolder)"
# Copy data
cp -R data "$(releaseFolder)"
cp LICENSE.txt "$(releaseFolder)"
cp README.md "$(releaseFolder)"
# Delete data
rm -f "$(releaseFolder)/data/room/map.world"
rm -f "$(releaseFolder)/data/room/standard.tsx"
# Build
g++ $(source) -std=c++11 -Wall -Os -lSDL2 -ffunction-sections -fdata-sections -Wl,--gc-sections -o "$(releaseFolder)/$(executable)"
strip -s -R .comment -R .gnu.version "$(releaseFolder)/$(executable)" --strip-unneeded
# Pack files
rm -f "$(linuxRelease)"
cd "$(releaseFolder)" && tar -czvf "../$(linuxRelease)" *
# Remove data
rm -rdf "$(releaseFolder)"
mkdir -p bin
g++ source/*.cpp -std=c++11 -Os -lSDL2 -ffunction-sections -fdata-sections -Wl,--gc-sections -o bin/$(executable)_linux
strip -s -R .comment -R .gnu.version bin/$(executable)_linux --strip-unneeded

View File

@@ -1,87 +1,4 @@
# JailDoctor's Dilemma (v1.06.2)
# JailDoctor's Dilemma
JailDoc es un Jailer. A los Jailers les gusta empezar proyectos. A nadie le gusta terminarlos. Los Jailers viven en la Jail. A la Jail va uno a empezar proyectos. A la Jail va uno a enseñar sus proyectos. A la Jail va uno a aprender como empezar nuevos proyectos. A la Jail va uno a ayudar a sus compañeros a que empiecen nuevos proyectos.
![JailDoctor's Dilemma - Title screen](https://php.sustancia.synology.me/images/jdd_title.png)
JailDoc es un Jailer destacado entre los Jailers. Tiene más proyectos empezados que nadie y es el que más ayuda a que los demas empiecen los suyos.
Un día, ocurrió algo. Alguien terminó un proyecto. Alguien liberó el *Puzzle Jail Facker*. Algún desaprensivo.
Esto hizo que JailDoc decidiera terminar y entregar uno de sus proyectos, pero, ¿cual? ¿JailBattle? ¿Sigmasuá? ¿Calculín Doom? Menudo dilema. JailDoc se arremangó y decidió finalizar y entregar todos sus proyectos inacabados. ¿Lo logrará?
## Jugabilidad
Ayuda a JailDoc a recuperar las partes de su proyecto que estan desperdigadas por cualquier lugar del Universo Jailer. Hay mas de **150 piezas** desperdigadas por **60 pantallas**. Algunas son un paseo, pero en otras tendras que calcular muy bien tus movimientos si no quieres acabar como un arounder del montón.
![JailDoctor's Dilemma - Gameplay](https://php.sustancia.synology.me/images/jdd_game1.png)
Cuando consigas recuperar gran parte de las piezas desperdigadas, dirigete a la Jail a mostrar a los Jailers como se termina un proyecto. Ten en cuenta que Bry no te dejará entrar. Solo aquellos que han realizado un *Fire Effect* o un *Facedor de Tornejos* son dignos de tal privilegio.
## Controles
El juego permite tanto el uso del teclado como de un mando de control. Las teclas para manejar el juego son las siguientes:
- **Cursores**: Para mover a izquierda o derecha a JailDoc y para saltar. En el fichero de configuración se pueden cambiar las teclas por otras opciones prefijadas: O, P para moverse y Q para saltar o A, D para moverse y W para saltar.
- **Tecla M**: Activa o desactiva la música
- **Tecla P**: Pone en pausa el juego
- **Tecla ESC**: Sale del juego si estas jugando. Sale del programa en cualquier otra circunstancia
- **Tecla F**: Cambia a modo de pantalla completa o de ventana
- **Teclas F1 a F4**: Cambian el tamaño de la ventana
- **Tecla B**: Activa o desactiva el borde de colores de la pantalla cuando el programa se ejecuta en modo de ventana
![JailDoctor's Dilemma - Gameplay](https://php.sustancia.synology.me/images/jdd_game2.png)
## Datos del programa
El programa guarda automáticamente la configuración del modo de video y las estadísticas de juego en tu carpeta personal del sistema. Esta carpeta tiene una ubicación distinta en función del sistema operativo que utilices.
En **Windows** se encuentra en:
`C:\Users\<nombre_de_usuario>\AppData\Roaming\jaildoctors_dilemma`
En **MacOS** se encuentra en:
`~/Library/Application Support/jaildoctors_dilemma`
En **Linux** se encuentra en:
`~/.jaildoctors_dilemma`
La primera vez, el juego te pregunta por tu identificador online. Esta información se guarda para futuras partidas.
En la carpeta está el fichero de configuración `config.txt` donde se puede modificar la configuración para conectarse al servicio online y los ficheros `stats.csv` y `stats_buffer.csv` con información de las estadisticas de juego.
## Agradecimientos
Agradecimientos como siempre a todos los Jailers por motivarme a hacer el juego y ayudarme en los momentos de duda a la hora de escribir el código. Y, como siempre, en especial a JailDoc por su unidad de Jail_Audio y cualquier otro código/ayuda/enseñanzas que haya necesitado para terminar el programa.
Si no me he descontado, este es el cuarto juego que consigo crear.
*13 de noviembre de 2022, JailDesigner*
Nuevo JailGame de plataformas. Inspirado en juegos como Jet Set Willy
Plataformas pasapantalla donde hay que ir recogiendo objetos. Manejamos a JailDoc y cada una de las habitaciones por las que pasa tiene relación con alguno de sus proyectos acabados o no. Tambien se pueden tematizar las habitaciones con cualquier tematica jailer: molotov, maniac mansion, todo.txt, etc..

View File

@@ -1,9 +0,0 @@
frameWidth=8
frameHeight=8
[animation]
name=default
speed=6
loop=-1
frames=0,1,2,3,4,5,6,7
[/animation]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 148 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

View File

@@ -1,9 +0,0 @@
frameWidth=8
frameHeight=16
[animation]
name=default
speed=8
loop=0
frames=0,1,2
[/animation]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 267 B

View File

@@ -1,9 +0,0 @@
frameWidth=16
frameHeight=16
[animation]
name=default
speed=4
loop=0
frames=0,1,2,3,4,5,6,7,8,9
[/animation]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 555 B

View File

@@ -1,9 +0,0 @@
frameWidth=8
frameHeight=8
[animation]
name=default
speed=4
loop=0
frames=0,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
[/animation]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.9 KiB

View File

@@ -1,9 +0,0 @@
frameWidth=16
frameHeight=16
[animation]
name=default
speed=8
loop=0
frames=0,1,2,3,3,3,3,3,3,3,3,3,3,3,3,2,1,0,0,0
[/animation]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 250 B

View File

@@ -1,9 +0,0 @@
frameWidth=16
frameHeight=16
[animation]
name=default
speed=4
loop=0
frames=0,1,2,3
[/animation]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 234 B

View File

@@ -1,9 +0,0 @@
frameWidth=9
frameHeight=7
[animation]
name=default
speed=3
loop=0
frames=0,1
[/animation]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 134 B

View File

@@ -1,9 +0,0 @@
frameWidth=8
frameHeight=16
[animation]
name=default
speed=8
loop=0
frames=0,1,2,3
[/animation]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 241 B

View File

@@ -1,9 +0,0 @@
frameWidth=16
frameHeight=16
[animation]
name=default
speed=6
loop=0
frames=0,1,2,3,4,5
[/animation]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 415 B

View File

@@ -1,9 +0,0 @@
frameWidth=16
frameHeight=16
[animation]
name=default
speed=4
loop=0
frames=0,1,2,3
[/animation]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 343 B

View File

@@ -1,9 +0,0 @@
frameWidth=16
frameHeight=16
[animation]
name=default
speed=6
loop=0
frames=0,1,2,3,4,5,6,7,8,9,10,11
[/animation]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 509 B

View File

@@ -1,9 +0,0 @@
frameWidth=16
frameHeight=8
[animation]
name=default
speed=10
loop=0
frames=0,1,2,3,4
[/animation]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 174 B

View File

@@ -1,9 +0,0 @@
frameWidth=16
frameHeight=16
[animation]
name=default
speed=8
loop=0
frames=0,1,2,3
[/animation]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 306 B

View File

@@ -1,9 +0,0 @@
frameWidth=24
frameHeight=32
[animation]
name=default
speed=6
loop=0
frames=0,1,2,3,4,5,6,7,6,5,4,3,2,1
[/animation]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 180 B

View File

@@ -1,9 +0,0 @@
frameWidth=10
frameHeight=16
[animation]
name=default
speed=6
loop=0
frames=0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,4,5,4,5,4,5,4,5,4,5,4,5,4,5,4,5,4,5,4,5,4,5,4,5
[/animation]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 253 B

View File

@@ -1,9 +0,0 @@
frameWidth=16
frameHeight=16
[animation]
name=default
speed=6
loop=0
frames=0,1,2,3
[/animation]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 319 B

View File

@@ -1,9 +0,0 @@
frameWidth=8
frameHeight=16
[animation]
name=default
speed=6
loop=0
frames=0,1,2,3
[/animation]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 231 B

View File

@@ -1,9 +0,0 @@
frameWidth=16
frameHeight=16
[animation]
name=default
speed=6
loop=0
frames=0,1,2,3
[/animation]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 288 B

View File

@@ -1,9 +0,0 @@
frameWidth=16
frameHeight=16
[animation]
name=default
speed=8
loop=0
frames=0,1,2,3
[/animation]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 329 B

View File

@@ -1,9 +0,0 @@
frameWidth=16
frameHeight=16
[animation]
name=default
speed=8
loop=0
frames=0,1,2,3
[/animation]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 298 B

View File

@@ -1,9 +0,0 @@
frameWidth=22
frameHeight=16
[animation]
name=default
speed=6
loop=0
frames=0,1,2,3,4,5
[/animation]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 630 B

View File

@@ -1,9 +0,0 @@
frameWidth=16
frameHeight=16
[animation]
name=default
speed=6
loop=0
frames=0,1,2,3,4,5
[/animation]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 310 B

View File

@@ -1,9 +0,0 @@
frameWidth=16
frameHeight=16
[animation]
name=default
speed=8
loop=0
frames=0,1,2,3
[/animation]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 271 B

View File

@@ -1,9 +0,0 @@
frameWidth=7
frameHeight=7
[animation]
name=default
speed=10
loop=0
frames=0
[/animation]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 122 B

View File

@@ -1,9 +0,0 @@
frameWidth=16
frameHeight=16
[animation]
name=default
speed=8
loop=0
frames=0,1,2,3
[/animation]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 306 B

View File

@@ -1,9 +0,0 @@
frameWidth=16
frameHeight=16
[animation]
name=default
speed=8
loop=0
frames=0,1,2,3
[/animation]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 285 B

View File

@@ -1,9 +0,0 @@
frameWidth=13
frameHeight=15
[animation]
name=default
speed=6
loop=0
frames=0,1
[/animation]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 205 B

View File

@@ -1,9 +0,0 @@
frameWidth=11
frameHeight=13
[animation]
name=default
speed=6
loop=0
frames=0,1
[/animation]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 189 B

View File

@@ -1,9 +0,0 @@
frameWidth=16
frameHeight=16
[animation]
name=default
speed=4
loop=0
frames=0,1,2,3
[/animation]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 351 B

View File

@@ -1,9 +0,0 @@
frameWidth=16
frameHeight=16
[animation]
name=default
speed=4
loop=0
frames=0,1,2,3,4,5,0,1,2,3,4,5,0,1,2,3,4,5,0,1,2,3,4,5,0,1,2,3,4,5,1,3,5,1,3,5,1,3,5
[/animation]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 323 B

View File

@@ -1,9 +0,0 @@
frameWidth=16
frameHeight=16
[animation]
name=default
speed=4
loop=0
frames=0,1,2,3
[/animation]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 378 B

View File

@@ -1,9 +0,0 @@
frameWidth=8
frameHeight=16
[animation]
name=default
speed=6
loop=0
frames=0,1,2,3
[/animation]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 227 B

View File

@@ -1,9 +0,0 @@
frameWidth=16
frameHeight=16
[animation]
name=default
speed=4
loop=0
frames=0,1
[/animation]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 160 B

View File

@@ -1,9 +0,0 @@
frameWidth=16
frameHeight=16
[animation]
name=default
speed=6
loop=0
frames=0,1,2,3
[/animation]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 317 B

View File

@@ -1,9 +0,0 @@
frameWidth=16
frameHeight=16
[animation]
name=default
speed=8
loop=0
frames=0,1,2,3,4,5
[/animation]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 332 B

View File

@@ -1,9 +0,0 @@
frameWidth=8
frameHeight=16
[animation]
name=default
speed=12
loop=0
frames=0,1,2,3
[/animation]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 228 B

View File

@@ -1,9 +0,0 @@
frameWidth=16
frameHeight=16
[animation]
name=default
speed=8
loop=0
frames=0,1,2,3,4,5,6,7
[/animation]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 441 B

View File

@@ -1,9 +0,0 @@
frameWidth=16
frameHeight=32
[animation]
name=default
speed=4
loop=0
frames=0,1,2,3
[/animation]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 414 B

View File

@@ -1,9 +0,0 @@
frameWidth=16
frameHeight=16
[animation]
name=default
speed=5
loop=0
frames=0,1
[/animation]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 205 B

View File

@@ -1,9 +0,0 @@
frameWidth=8
frameHeight=8
[animation]
name=default
speed=6
loop=0
frames=0,1,2,3,4,5,4,3,2,1
[/animation]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 163 B

View File

@@ -1,9 +0,0 @@
frameWidth=8
frameHeight=16
[animation]
name=default
speed=6
loop=0
frames=0,1,2,3
[/animation]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 187 B

View File

@@ -1,9 +0,0 @@
frameWidth=43
frameHeight=44
[animation]
name=default
speed=100
loop=0
frames=0
[/animation]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 337 B

View File

@@ -1,9 +0,0 @@
frameWidth=79
frameHeight=90
[animation]
name=default
speed=100
loop=0
frames=0
[/animation]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 924 B

Some files were not shown because too many files have changed in this diff Show More