working on ios.

This commit is contained in:
Bryce Covert
2015-09-12 20:25:24 -07:00
parent a294acc968
commit 4a3e66a772
9 changed files with 17 additions and 11 deletions

BIN
desktop/resources/intro.wav Normal file

Binary file not shown.

View File

@@ -96,7 +96,7 @@
fullscreen (center fullscreen) fullscreen (center fullscreen)
quit (assoc (label "End quest" (style :label font (color 1.0 0.3 0.3 1.0))) :x 0 :y (- 280 (* 32 6)) :height 32 :origin-x 0 :origin-y 0) quit (assoc (label "End quest" (style :label font (color 1.0 0.3 0.3 1.0))) :x 0 :y (- 280 (* 32 6)) :height 32 :origin-x 0 :origin-y 0)
quit (center quit) quit (center quit)
music (utils/make-music "intro.ogg") music (utils/make-music "intro.wav")
ui-skin (skin "ui/ui.json") ui-skin (skin "ui/ui.json")
balloon (utils/make-anim "title/balloon.png" [15 30] 0.45 (range 4)) balloon (utils/make-anim "title/balloon.png" [15 30] 0.45 (range 4))
] ]

2
ios/.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
target
checkouts

View File

@@ -5,15 +5,15 @@
<key>CFBundleDevelopmentRegion</key> <key>CFBundleDevelopmentRegion</key>
<string>en</string> <string>en</string>
<key>CFBundleDisplayName</key> <key>CFBundleDisplayName</key>
<string>advent</string> <string>Tick's Tales</string>
<key>CFBundleExecutable</key> <key>CFBundleExecutable</key>
<string>advent</string> <string>tickstales</string>
<key>CFBundleIdentifier</key> <key>CFBundleIdentifier</key>
<string>advent.core</string> <string>com.brycecovertoperations.tickstales</string>
<key>CFBundleInfoDictionaryVersion</key> <key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string> <string>6.0</string>
<key>CFBundleName</key> <key>CFBundleName</key>
<string>advent</string> <string>tickstales</string>
<key>CFBundlePackageType</key> <key>CFBundlePackageType</key>
<string>APPL</string> <string>APPL</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -1,17 +1,21 @@
(defproject advent "0.0.1-SNAPSHOT" (defproject advent "0.0.1-SNAPSHOT"
:description "FIXME: write description" :description "FIXME: write description"
:dependencies [[com.badlogicgames.gdx/gdx "1.3.0"] :dependencies [[com.badlogicgames.gdx/gdx "1.5.3"]
[com.badlogicgames.gdx/gdx-backend-robovm "1.3.0"] [com.badlogicgames.gdx/gdx-backend-robovm "1.5.3"]
[com.badlogicgames.gdx/gdx-box2d "1.3.0"] [com.badlogicgames.gdx/gdx-box2d "1.5.3"]
[com.badlogicgames.gdx/gdx-bullet "1.3.0"] [com.badlogicgames.gdx/gdx-bullet "1.5.3"]
[org.clojure/data.priority-map "0.0.5"]
[org.clojure/core.async "0.1.346.0-17112a-alpha"]
[org.clojure/clojure "1.6.0"] [org.clojure/clojure "1.6.0"]
[play-clj "0.3.9"]] [play-clj "0.4.5-BRYCE"]]
:source-paths ["src/clojure" "../desktop/src-common"] :source-paths ["src/clojure" "../desktop/src-common"]
:java-source-paths ["src/java"] :java-source-paths ["src/java"]
:plugins [[lein-fruit "0.2.3"]]
:javac-options ["-target" "1.7" "-source" "1.7" "-Xlint:-options"] :javac-options ["-target" "1.7" "-source" "1.7" "-Xlint:-options"]
:ios {:robovm-opts ["-forcelinkclasses" "advent.**:clojure.**:com.badlogic.**:play_clj.**" :ios {:robovm-opts ["-forcelinkclasses" "advent.**:clojure.**:com.badlogic.**:play_clj.**"
"-libs" "libs/libObjectAL.a:libs/libgdx.a:libs/libgdx-box2d.a:libs/libgdx-bullet.a" "-libs" "libs/libObjectAL.a:libs/libgdx.a:libs/libgdx-box2d.a:libs/libgdx-bullet.a"
"-frameworks" "UIKit:OpenGLES:QuartzCore:CoreGraphics:OpenAL:AudioToolbox:AVFoundation" "-frameworks" "UIKit:OpenGLES:QuartzCore:CoreGraphics:OpenAL:AudioToolbox:AVFoundation"
"-resources" "../desktop/resources/**"]} "-resources" "../desktop/resources/**"]
:robovm-path "/Users/brycecovert/dev/robovm/robovm-1.4.0"}
:aot :all :aot :all
:main advent.core.IOSLauncher) :main advent.core.IOSLauncher)