├── .gitignore
├── Readme.md
├── android
├── app
│ ├── build.gradle
│ ├── proguard-rules.pro
│ └── src
│ │ └── main
│ │ ├── AndroidManifest.xml
│ │ ├── assets
│ │ ├── .sf_compact_display_ultralight_48.png
│ │ ├── .sf_compact_display_ultralight_48.xml
│ │ ├── Orbitron-Black-16.fnt
│ │ ├── Orbitron-Black-24.fnt
│ │ ├── Orbitron-Black-48.fnt
│ │ ├── Orbitron-Medium-16.fnt
│ │ ├── Orbitron-Medium-24.fnt
│ │ ├── Orbitron-Medium-48.fnt
│ │ ├── Orbitron-Regular-16.fnt
│ │ ├── Orbitron-Regular-24.fnt
│ │ ├── Orbitron-Regular-48.fnt
│ │ ├── Reprocessing.h
│ │ ├── SFCompactDisplay-Regular-16.fnt
│ │ ├── SFCompactDisplay-Regular-24.fnt
│ │ ├── SFCompactDisplay-Regular-48.fnt
│ │ ├── SFCompactDisplay-Ultralight-16.fnt
│ │ ├── SFCompactDisplay-Ultralight-24.fnt
│ │ ├── SFCompactDisplay-Ultralight-48.fnt
│ │ ├── SFCompactRounded-Black-16.fnt
│ │ ├── SFCompactRounded-Black-24.fnt
│ │ ├── SFCompactRounded-Black-48.fnt
│ │ ├── flappy.fnt
│ │ ├── font.fnt
│ │ ├── font.png
│ │ ├── icon.png
│ │ ├── icon
│ │ │ ├── app-icon-iTunesArtwork.png
│ │ │ ├── app-icon@120x120.png
│ │ │ ├── app-icon@152x152.png
│ │ │ ├── app-icon@167x167.png
│ │ │ ├── app-icon@180x180.png
│ │ │ ├── app-icon@22x22.png
│ │ │ ├── app-icon@25x25.png
│ │ │ ├── app-icon@29x29.png
│ │ │ ├── app-icon@44x44.png
│ │ │ ├── app-icon@50x50.png
│ │ │ ├── app-icon@58x58.png
│ │ │ ├── app-icon@60x60.png
│ │ │ ├── app-icon@66x66.png
│ │ │ ├── app-icon@75x75.png
│ │ │ ├── app-icon@76x76.png
│ │ │ ├── app-icon@80x80.png
│ │ │ └── app-icon@87x87.png
│ │ ├── icon_1024.png
│ │ ├── icon_120.png
│ │ ├── icon_180.png
│ │ ├── icon_40.png
│ │ ├── icon_60.png
│ │ ├── icon_80.png
│ │ ├── icon_87.png
│ │ ├── logo.png
│ │ └── ultralight.png
│ │ ├── ic_launcher-web.png
│ │ ├── java
│ │ └── com
│ │ │ └── jaredforsyth
│ │ │ └── purplemaze
│ │ │ └── MainActivity.java
│ │ ├── jniLibs
│ │ ├── armeabi-v7a
│ │ │ ├── libasmrun_shared.so
│ │ │ ├── libgravitron.so
│ │ │ └── libreasongl.so
│ │ └── x86
│ │ │ └── libreasongl.so
│ │ └── res
│ │ ├── layout
│ │ └── activity_main.xml
│ │ ├── mipmap-hdpi
│ │ └── ic_launcher.png
│ │ ├── mipmap-mdpi
│ │ └── ic_launcher.png
│ │ ├── mipmap-xhdpi
│ │ └── ic_launcher.png
│ │ ├── mipmap-xxhdpi
│ │ └── ic_launcher.png
│ │ ├── mipmap-xxxhdpi
│ │ └── ic_launcher.png
│ │ ├── values-w820dp
│ │ └── dimens.xml
│ │ └── values
│ │ ├── colors.xml
│ │ ├── dimens.xml
│ │ ├── strings.xml
│ │ └── styles.xml
├── build.gradle
├── gradle.properties
├── gradle
│ └── wrapper
│ │ ├── gradle-wrapper.jar
│ │ └── gradle-wrapper.properties
├── gradlew
├── gradlew.bat
└── settings.gradle
├── assets
├── .sf_compact_display_ultralight_48.png
├── .sf_compact_display_ultralight_48.xml
├── Orbitron-Black-16.fnt
├── Orbitron-Black-24.fnt
├── Orbitron-Black-48.fnt
├── Orbitron-Medium-16.fnt
├── Orbitron-Medium-24.fnt
├── Orbitron-Medium-48.fnt
├── Orbitron-Regular-16.fnt
├── Orbitron-Regular-24.fnt
├── Orbitron-Regular-48.fnt
├── Reprocessing.h
├── SFCompactDisplay-Regular-16.fnt
├── SFCompactDisplay-Regular-24.fnt
├── SFCompactDisplay-Regular-48.fnt
├── SFCompactDisplay-Ultralight-16.fnt
├── SFCompactDisplay-Ultralight-24.fnt
├── SFCompactDisplay-Ultralight-48.fnt
├── SFCompactRounded-Black-16.fnt
├── SFCompactRounded-Black-24.fnt
├── SFCompactRounded-Black-48.fnt
├── flappy.fnt
├── font.fnt
├── font.png
├── icon.png
├── icon
│ ├── app-icon-iTunesArtwork.png
│ ├── app-icon@120x120.png
│ ├── app-icon@152x152.png
│ ├── app-icon@167x167.png
│ ├── app-icon@180x180.png
│ ├── app-icon@22x22.png
│ ├── app-icon@25x25.png
│ ├── app-icon@29x29.png
│ ├── app-icon@44x44.png
│ ├── app-icon@50x50.png
│ ├── app-icon@58x58.png
│ ├── app-icon@60x60.png
│ ├── app-icon@66x66.png
│ ├── app-icon@75x75.png
│ ├── app-icon@76x76.png
│ ├── app-icon@80x80.png
│ └── app-icon@87x87.png
├── icon_1024.png
├── icon_120.png
├── icon_180.png
├── icon_40.png
├── icon_60.png
├── icon_80.png
├── icon_87.png
├── logo.png
└── ultralight.png
├── bsconfig.json
├── icon.png
├── icon.sketch
├── icons
└── icon.png
├── ios
├── App.xcodeproj
│ ├── project.pbxproj
│ └── project.xcworkspace
│ │ ├── contents.xcworkspacedata
│ │ └── xcshareddata
│ │ └── OCamlTest.xcscmblueprint
├── App
│ ├── AppDelegate.h
│ ├── AppDelegate.m
│ ├── Assets.xcassets
│ │ └── AppIcon.appiconset
│ │ │ ├── Contents.json
│ │ │ ├── icon.png
│ │ │ ├── icon_120-1.png
│ │ │ ├── icon_120-2.png
│ │ │ ├── icon_120-3.png
│ │ │ ├── icon_120-4.png
│ │ │ ├── icon_120-5.png
│ │ │ ├── icon_120-6.png
│ │ │ ├── icon_120.png
│ │ │ └── icon_180.png
│ ├── Base.lproj
│ │ └── Main.storyboard
│ ├── Info.plist
│ ├── LaunchScreen.storyboard
│ ├── background.png
│ └── main.m
├── libreasongl.a
└── reprocessing
├── package-lock.json
├── package.json
├── public
└── index.html
├── screencast.gif
└── src
├── FreePlay.re
├── Geom.re
├── HslToRgb.re
├── Main.re
├── MyQueue.re
├── MyUtils.re
├── Play_draw.re
├── Play_step.re
├── Play_types.re
├── ScreenManager.re
├── Shared.re
├── Test.re
├── Timer.re
├── UIManager.re
├── android.re
├── dev.re
├── indexhot.re
├── ios.re
├── prod.re
├── web.re
└── webhot.re
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | .merlin
3 | .bsb.lock
4 | npm-debug.log
5 | /lib/
6 | /node_modules/
7 | user_data_highest_beaten_level
8 | bundler/node_modules
9 | docs
10 | .vscode
11 | bundler/Gravitron.app
12 | bundler/Gravitron.zip
13 | user_data_gravitron_data
14 | _build
15 | *.iml
16 | *.apk
17 | android/app/build
18 | android/build
19 | .gradle
20 | .idea
21 | ios/Build
22 | *.xcuserdatad
23 | android/local.properties
24 | keystore.properties
25 | bundler/Gravitron.app.zip
26 | public/assets
27 | PurpleMaze.app
28 | PurpleMaze.app.zip
29 |
--------------------------------------------------------------------------------
/Readme.md:
--------------------------------------------------------------------------------
1 | # Purple Maze
2 |
3 | 
4 |
5 | It's a maze game, written in Reason.
6 | Planning to target mobile, web, and native desktop.
7 |
8 | I'll probably spin out a couple of the parts into standalone libraries (`Geom.re` in particular).
9 |
10 | ## License
11 |
12 | This code is licensed under [Creative Commons Attribution-NonCommercial 4.0](https://creativecommons.org/licenses/by-nc/4.0/legalcode) (CC BY-NC 4.0). If you use this code, you must attribute me (Jared Forsyth), and link back to this repository.
13 | If you want me to license parts of the codebase under a more permissive license, such as one that allows commercial use, you're welcome to ask.
14 |
--------------------------------------------------------------------------------
/android/app/build.gradle:
--------------------------------------------------------------------------------
1 | apply plugin: 'com.android.application'
2 |
3 | def keystorePropertiesFile = rootProject.file("keystore.properties")
4 | def keystoreProperties = new Properties()
5 | keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
6 |
7 | task copyTask(type: Copy) {
8 | def toDir = rootProject.file('app/src/main/assets')
9 | from rootProject.file('../assets')
10 | into toDir
11 | }
12 |
13 |
14 | android {
15 | signingConfigs {
16 | config {
17 | keyAlias keystoreProperties['keyAlias']
18 | keyPassword keystoreProperties['keyPassword']
19 | storeFile file(keystoreProperties['storeFile'])
20 | storePassword keystoreProperties['storePassword']
21 | }
22 | }
23 | compileSdkVersion = 21
24 | buildToolsVersion = '25.0.0'
25 | defaultConfig {
26 | applicationId = 'com.jaredforsyth.purplemaze'
27 | minSdkVersion 21
28 | targetSdkVersion 21
29 | versionCode = 3
30 | versionName = '1.2'
31 | signingConfig signingConfigs.config
32 | }
33 | buildTypes {
34 | debug {
35 |
36 | copyTask.execute()
37 | }
38 | release {
39 | minifyEnabled false
40 | copyTask.execute()
41 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
42 | signingConfig signingConfigs.config
43 | }
44 | }
45 | productFlavors {
46 | }
47 | }
48 |
49 | dependencies {
50 | compile fileTree(include: ['*.jar'], dir: 'libs')
51 | compile 'com.android.support:appcompat-v7:21.0.0'
52 | compile 'com.android.support.constraint:constraint-layout:1.0.0-alpha2'
53 | compile project(':reasongl-android')
54 | }
55 |
--------------------------------------------------------------------------------
/android/app/proguard-rules.pro:
--------------------------------------------------------------------------------
1 | # Add project specific ProGuard rules here.
2 | # By default, the flags in this file are appended to flags specified
3 | # in /Users/gfan/dev/sdk_current/tools/proguard/proguard-android.txt
4 | # You can edit the include path and order by changing the proguardFiles
5 | # directive in build.gradle.
6 | #
7 | # For more details, see
8 | # http://developer.android.com/guide/developing/tools/proguard.html
9 |
10 | # Add any project specific keep options here:
11 |
12 | # If your project uses WebView with JS, uncomment the following
13 | # and specify the fully qualified class name to the JavaScript interface
14 | # class:
15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
16 | # public *;
17 | #}
18 |
--------------------------------------------------------------------------------
/android/app/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
11 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/android/app/src/main/assets/.sf_compact_display_ultralight_48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/android/app/src/main/assets/.sf_compact_display_ultralight_48.png
--------------------------------------------------------------------------------
/android/app/src/main/assets/.sf_compact_display_ultralight_48.xml:
--------------------------------------------------------------------------------
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 |
--------------------------------------------------------------------------------
/android/app/src/main/assets/Reprocessing.h:
--------------------------------------------------------------------------------
1 | //
2 | // ViewController.h
3 | // OCamlTest
4 | //
5 | // Created by Wojciech Czekalski on 22.01.2017.
6 | // Copyright © 2017 wokalski. All rights reserved.
7 | //
8 |
9 | #import
10 | #import
11 |
12 | @interface ReprocessingViewController : GLKViewController
13 |
14 | @property (strong, nonatomic) EAGLContext *context;
15 |
16 |
17 | @end
18 |
--------------------------------------------------------------------------------
/android/app/src/main/assets/SFCompactRounded-Black-16.fnt:
--------------------------------------------------------------------------------
1 | info face="SFCompactRounded-Black" size=16 bold=0 italic=0 charset="" unicode=1 stretchH=100 smooth=1 aa=2 padding=0,0,0,0 spacing=0,0
2 | common lineHeight=19 base=16 scaleW=1024 scaleH=512 pages=1 packed=0 alphaChnl=0 redChnl=0 greenChnl=0 blueChnl=0
3 | page id=0 file="ultralight.png"
4 | chars count=95
5 | char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=3 page=0 chnl=0
6 | char id=33 x=245 y=139 width=5 height=12 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0
7 | char id=34 x=79 y=419 width=7 height=6 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0
8 | char id=35 x=436 y=266 width=10 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0
9 | char id=36 x=437 y=250 width=10 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0
10 | char id=37 x=422 y=266 width=12 height=13 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0
11 | char id=38 x=448 y=266 width=11 height=12 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0
12 | char id=39 x=92 y=185 width=4 height=6 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0
13 | char id=40 x=245 y=153 width=5 height=14 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0
14 | char id=41 x=244 y=346 width=6 height=14 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0
15 | char id=42 x=182 y=503 width=6 height=7 xoffset=1 yoffset=5 xadvance=7 page=0 chnl=0
16 | char id=43 x=449 y=250 width=10 height=10 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0
17 | char id=44 x=88 y=419 width=4 height=7 xoffset=0 yoffset=12 xadvance=4 page=0 chnl=0
18 | char id=45 x=90 y=504 width=6 height=4 xoffset=0 yoffset=10 xadvance=6 page=0 chnl=0
19 | char id=46 x=92 y=388 width=4 height=5 xoffset=0 yoffset=12 xadvance=5 page=0 chnl=0
20 | char id=47 x=279 y=479 width=7 height=15 xoffset=-1 yoffset=4 xadvance=5 page=0 chnl=0
21 | char id=48 x=440 y=219 width=10 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0
22 | char id=49 x=280 y=349 width=7 height=11 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0
23 | char id=50 x=379 y=424 width=9 height=11 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0
24 | char id=51 x=379 y=479 width=10 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0
25 | char id=52 x=377 y=497 width=10 height=11 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0
26 | char id=53 x=408 y=143 width=10 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0
27 | char id=54 x=408 y=375 width=10 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0
28 | char id=55 x=380 y=443 width=9 height=11 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0
29 | char id=56 x=408 y=414 width=10 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0
30 | char id=57 x=407 y=474 width=10 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0
31 | char id=58 x=176 y=125 width=4 height=10 xoffset=0 yoffset=7 xadvance=5 page=0 chnl=0
32 | char id=59 x=176 y=110 width=4 height=13 xoffset=0 yoffset=7 xadvance=5 page=0 chnl=0
33 | char id=60 x=422 y=239 width=9 height=9 xoffset=1 yoffset=7 xadvance=10 page=0 chnl=0
34 | char id=61 x=311 y=63 width=10 height=7 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0
35 | char id=62 x=433 y=239 width=9 height=9 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0
36 | char id=63 x=279 y=461 width=8 height=11 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0
37 | char id=64 x=422 y=250 width=13 height=14 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0
38 | char id=65 x=205 y=183 width=11 height=11 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0
39 | char id=66 x=205 y=196 width=10 height=11 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0
40 | char id=67 x=205 y=209 width=10 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0
41 | char id=68 x=205 y=223 width=11 height=11 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0
42 | char id=69 x=205 y=236 width=9 height=11 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0
43 | char id=70 x=205 y=249 width=9 height=11 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0
44 | char id=71 x=205 y=262 width=10 height=12 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0
45 | char id=72 x=205 y=276 width=11 height=11 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0
46 | char id=73 x=182 y=422 width=5 height=11 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0
47 | char id=74 x=205 y=289 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0
48 | char id=75 x=205 y=303 width=11 height=11 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0
49 | char id=76 x=205 y=316 width=9 height=11 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0
50 | char id=77 x=407 y=434 width=13 height=11 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0
51 | char id=78 x=205 y=329 width=10 height=11 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0
52 | char id=79 x=205 y=342 width=11 height=12 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0
53 | char id=80 x=205 y=356 width=10 height=11 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0
54 | char id=81 x=205 y=369 width=11 height=13 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0
55 | char id=82 x=205 y=384 width=10 height=11 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0
56 | char id=83 x=205 y=397 width=10 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0
57 | char id=84 x=205 y=411 width=10 height=11 xoffset=-1 yoffset=5 xadvance=9 page=0 chnl=0
58 | char id=85 x=205 y=424 width=11 height=12 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0
59 | char id=86 x=205 y=438 width=10 height=11 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0
60 | char id=87 x=439 y=200 width=15 height=11 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0
61 | char id=88 x=205 y=451 width=10 height=11 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0
62 | char id=89 x=205 y=464 width=10 height=11 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0
63 | char id=90 x=205 y=477 width=10 height=11 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0
64 | char id=91 x=280 y=362 width=7 height=13 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0
65 | char id=92 x=279 y=496 width=7 height=15 xoffset=-1 yoffset=4 xadvance=5 page=0 chnl=0
66 | char id=93 x=244 y=362 width=6 height=13 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0
67 | char id=94 x=80 y=504 width=8 height=5 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0
68 | char id=95 x=160 y=404 width=11 height=4 xoffset=-2 yoffset=16 xadvance=7 page=0 chnl=0
69 | char id=96 x=53 y=169 width=3 height=4 xoffset=2 yoffset=3 xadvance=7 page=0 chnl=0
70 | char id=97 x=205 y=490 width=9 height=9 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0
71 | char id=98 x=350 y=222 width=10 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0
72 | char id=99 x=205 y=501 width=9 height=10 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0
73 | char id=100 x=278 y=385 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0
74 | char id=101 x=278 y=399 width=9 height=10 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0
75 | char id=102 x=182 y=435 width=7 height=12 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0
76 | char id=103 x=350 y=236 width=9 height=12 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0
77 | char id=104 x=350 y=250 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0
78 | char id=105 x=92 y=374 width=4 height=12 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0
79 | char id=106 x=182 y=449 width=5 height=15 xoffset=-1 yoffset=4 xadvance=5 page=0 chnl=0
80 | char id=107 x=379 y=255 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0
81 | char id=108 x=92 y=428 width=4 height=12 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0
82 | char id=109 x=318 y=238 width=14 height=9 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0
83 | char id=110 x=314 y=339 width=9 height=9 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0
84 | char id=111 x=379 y=291 width=9 height=10 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0
85 | char id=112 x=378 y=329 width=10 height=12 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0
86 | char id=113 x=380 y=309 width=9 height=12 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0
87 | char id=114 x=182 y=466 width=7 height=9 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0
88 | char id=115 x=182 y=477 width=8 height=10 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0
89 | char id=116 x=182 y=489 width=7 height=12 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0
90 | char id=117 x=380 y=347 width=9 height=9 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0
91 | char id=118 x=379 y=368 width=9 height=9 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0
92 | char id=119 x=407 y=454 width=13 height=9 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0
93 | char id=120 x=379 y=386 width=9 height=9 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0
94 | char id=121 x=379 y=406 width=9 height=12 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0
95 | char id=122 x=279 y=450 width=8 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0
96 | char id=123 x=280 y=414 width=7 height=15 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0
97 | char id=124 x=245 y=173 width=4 height=15 xoffset=1 yoffset=4 xadvance=6 page=0 chnl=0
98 | char id=125 x=280 y=431 width=7 height=15 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0
99 | char id=126 x=171 y=157 width=9 height=5 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0
100 | kernings count=0
101 |
--------------------------------------------------------------------------------
/android/app/src/main/assets/SFCompactRounded-Black-24.fnt:
--------------------------------------------------------------------------------
1 | info face="SFCompactRounded-Black" size=24 bold=0 italic=0 charset="" unicode=1 stretchH=100 smooth=1 aa=2 padding=0,0,0,0 spacing=0,0
2 | common lineHeight=29 base=23 scaleW=1024 scaleH=512 pages=1 packed=0 alphaChnl=0 redChnl=0 greenChnl=0 blueChnl=0
3 | page id=0 file="ultralight.png"
4 | chars count=95
5 | char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=5 page=0 chnl=0
6 | char id=33 x=174 y=494 width=6 height=17 xoffset=1 yoffset=6 xadvance=7 page=0 chnl=0
7 | char id=34 x=192 y=454 width=11 height=8 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0
8 | char id=35 x=422 y=200 width=15 height=17 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0
9 | char id=36 x=422 y=162 width=15 height=20 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0
10 | char id=37 x=439 y=162 width=18 height=18 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=0
11 | char id=38 x=422 y=219 width=16 height=18 xoffset=0 yoffset=6 xadvance=17 page=0 chnl=0
12 | char id=39 x=137 y=137 width=6 height=8 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0
13 | char id=40 x=182 y=352 width=7 height=21 xoffset=1 yoffset=6 xadvance=9 page=0 chnl=0
14 | char id=41 x=182 y=375 width=7 height=21 xoffset=1 yoffset=6 xadvance=9 page=0 chnl=0
15 | char id=42 x=205 y=172 width=9 height=9 xoffset=1 yoffset=7 xadvance=11 page=0 chnl=0
16 | char id=43 x=422 y=184 width=15 height=14 xoffset=0 yoffset=9 xadvance=15 page=0 chnl=0
17 | char id=44 x=182 y=305 width=6 height=9 xoffset=0 yoffset=18 xadvance=6 page=0 chnl=0
18 | char id=45 x=86 y=311 width=9 height=5 xoffset=0 yoffset=14 xadvance=9 page=0 chnl=0
19 | char id=46 x=78 y=311 width=6 height=6 xoffset=1 yoffset=18 xadvance=7 page=0 chnl=0
20 | char id=47 x=205 y=114 width=10 height=22 xoffset=-1 yoffset=5 xadvance=8 page=0 chnl=0
21 | char id=48 x=391 y=454 width=14 height=18 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0
22 | char id=49 x=192 y=436 width=10 height=16 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0
23 | char id=50 x=407 y=336 width=13 height=17 xoffset=1 yoffset=6 xadvance=14 page=0 chnl=0
24 | char id=51 x=391 y=355 width=14 height=18 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0
25 | char id=52 x=391 y=375 width=15 height=17 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0
26 | char id=53 x=407 y=355 width=13 height=17 xoffset=1 yoffset=7 xadvance=15 page=0 chnl=0
27 | char id=54 x=391 y=394 width=14 height=18 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0
28 | char id=55 x=407 y=394 width=13 height=16 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0
29 | char id=56 x=391 y=414 width=15 height=18 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0
30 | char id=57 x=391 y=434 width=14 height=18 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0
31 | char id=58 x=182 y=336 width=6 height=14 xoffset=1 yoffset=10 xadvance=7 page=0 chnl=0
32 | char id=59 x=182 y=316 width=7 height=18 xoffset=0 yoffset=10 xadvance=7 page=0 chnl=0
33 | char id=60 x=391 y=474 width=14 height=13 xoffset=1 yoffset=10 xadvance=15 page=0 chnl=0
34 | char id=61 x=439 y=184 width=14 height=11 xoffset=1 yoffset=11 xadvance=15 page=0 chnl=0
35 | char id=62 x=407 y=321 width=13 height=13 xoffset=1 yoffset=10 xadvance=15 page=0 chnl=0
36 | char id=63 x=205 y=49 width=12 height=17 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0
37 | char id=64 x=391 y=489 width=19 height=20 xoffset=1 yoffset=7 xadvance=21 page=0 chnl=0
38 | char id=65 x=314 y=321 width=16 height=16 xoffset=0 yoffset=7 xadvance=16 page=0 chnl=0
39 | char id=66 x=317 y=73 width=14 height=16 xoffset=1 yoffset=7 xadvance=15 page=0 chnl=0
40 | char id=67 x=317 y=249 width=15 height=18 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0
41 | char id=68 x=317 y=91 width=15 height=16 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0
42 | char id=69 x=318 y=220 width=13 height=16 xoffset=1 yoffset=7 xadvance=14 page=0 chnl=0
43 | char id=70 x=317 y=285 width=13 height=16 xoffset=1 yoffset=7 xadvance=13 page=0 chnl=0
44 | char id=71 x=316 y=385 width=16 height=18 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0
45 | char id=72 x=317 y=303 width=15 height=16 xoffset=1 yoffset=7 xadvance=17 page=0 chnl=0
46 | char id=73 x=174 y=88 width=6 height=16 xoffset=1 yoffset=7 xadvance=8 page=0 chnl=0
47 | char id=74 x=316 y=413 width=13 height=17 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0
48 | char id=75 x=362 y=255 width=15 height=16 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0
49 | char id=76 x=205 y=16 width=12 height=16 xoffset=1 yoffset=7 xadvance=12 page=0 chnl=0
50 | char id=77 x=362 y=273 width=18 height=16 xoffset=1 yoffset=7 xadvance=20 page=0 chnl=0
51 | char id=78 x=362 y=291 width=15 height=16 xoffset=1 yoffset=7 xadvance=17 page=0 chnl=0
52 | char id=79 x=362 y=309 width=16 height=18 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0
53 | char id=80 x=362 y=329 width=14 height=16 xoffset=1 yoffset=7 xadvance=15 page=0 chnl=0
54 | char id=81 x=362 y=347 width=16 height=19 xoffset=0 yoffset=6 xadvance=17 page=0 chnl=0
55 | char id=82 x=362 y=368 width=15 height=16 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0
56 | char id=83 x=362 y=386 width=15 height=18 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0
57 | char id=84 x=362 y=406 width=15 height=16 xoffset=-1 yoffset=7 xadvance=13 page=0 chnl=0
58 | char id=85 x=362 y=424 width=15 height=17 xoffset=1 yoffset=7 xadvance=17 page=0 chnl=0
59 | char id=86 x=362 y=443 width=16 height=16 xoffset=0 yoffset=7 xadvance=16 page=0 chnl=0
60 | char id=87 x=362 y=461 width=22 height=16 xoffset=0 yoffset=7 xadvance=22 page=0 chnl=0
61 | char id=88 x=362 y=479 width=15 height=16 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0
62 | char id=89 x=391 y=143 width=15 height=16 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0
63 | char id=90 x=391 y=161 width=14 height=16 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0
64 | char id=91 x=192 y=464 width=9 height=19 xoffset=1 yoffset=7 xadvance=10 page=0 chnl=0
65 | char id=92 x=205 y=138 width=10 height=22 xoffset=-1 yoffset=5 xadvance=8 page=0 chnl=0
66 | char id=93 x=192 y=485 width=9 height=19 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0
67 | char id=94 x=205 y=162 width=11 height=8 xoffset=1 yoffset=6 xadvance=12 page=0 chnl=0
68 | char id=95 x=79 y=338 width=16 height=4 xoffset=-3 yoffset=24 xadvance=10 page=0 chnl=0
69 | char id=96 x=91 y=133 width=5 height=6 xoffset=3 yoffset=4 xadvance=11 page=0 chnl=0
70 | char id=97 x=317 y=269 width=13 height=13 xoffset=0 yoffset=10 xadvance=14 page=0 chnl=0
71 | char id=98 x=391 y=179 width=14 height=17 xoffset=1 yoffset=6 xadvance=15 page=0 chnl=0
72 | char id=99 x=362 y=497 width=13 height=14 xoffset=0 yoffset=10 xadvance=13 page=0 chnl=0
73 | char id=100 x=391 y=198 width=14 height=17 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0
74 | char id=101 x=407 y=161 width=13 height=14 xoffset=0 yoffset=10 xadvance=14 page=0 chnl=0
75 | char id=102 x=192 y=358 width=10 height=18 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0
76 | char id=103 x=391 y=217 width=14 height=18 xoffset=0 yoffset=10 xadvance=15 page=0 chnl=0
77 | char id=104 x=407 y=179 width=13 height=17 xoffset=1 yoffset=6 xadvance=15 page=0 chnl=0
78 | char id=105 x=182 y=265 width=6 height=18 xoffset=1 yoffset=5 xadvance=7 page=0 chnl=0
79 | char id=106 x=192 y=378 width=9 height=22 xoffset=-2 yoffset=5 xadvance=7 page=0 chnl=0
80 | char id=107 x=407 y=198 width=13 height=17 xoffset=1 yoffset=6 xadvance=15 page=0 chnl=0
81 | char id=108 x=182 y=285 width=5 height=18 xoffset=1 yoffset=5 xadvance=7 page=0 chnl=0
82 | char id=109 x=391 y=237 width=20 height=13 xoffset=1 yoffset=10 xadvance=22 page=0 chnl=0
83 | char id=110 x=407 y=217 width=13 height=13 xoffset=1 yoffset=10 xadvance=15 page=0 chnl=0
84 | char id=111 x=391 y=252 width=14 height=14 xoffset=0 yoffset=10 xadvance=14 page=0 chnl=0
85 | char id=112 x=391 y=268 width=14 height=17 xoffset=1 yoffset=10 xadvance=15 page=0 chnl=0
86 | char id=113 x=391 y=287 width=14 height=17 xoffset=0 yoffset=10 xadvance=15 page=0 chnl=0
87 | char id=114 x=192 y=402 width=10 height=13 xoffset=1 yoffset=10 xadvance=10 page=0 chnl=0
88 | char id=115 x=407 y=252 width=13 height=14 xoffset=0 yoffset=10 xadvance=13 page=0 chnl=0
89 | char id=116 x=192 y=417 width=10 height=17 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0
90 | char id=117 x=407 y=268 width=13 height=13 xoffset=1 yoffset=10 xadvance=15 page=0 chnl=0
91 | char id=118 x=407 y=287 width=13 height=13 xoffset=0 yoffset=10 xadvance=13 page=0 chnl=0
92 | char id=119 x=391 y=306 width=20 height=13 xoffset=0 yoffset=10 xadvance=20 page=0 chnl=0
93 | char id=120 x=391 y=321 width=14 height=13 xoffset=0 yoffset=10 xadvance=14 page=0 chnl=0
94 | char id=121 x=391 y=336 width=14 height=17 xoffset=0 yoffset=10 xadvance=14 page=0 chnl=0
95 | char id=122 x=205 y=34 width=12 height=13 xoffset=0 yoffset=10 xadvance=12 page=0 chnl=0
96 | char id=123 x=205 y=68 width=11 height=21 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0
97 | char id=124 x=182 y=398 width=5 height=22 xoffset=2 yoffset=5 xadvance=9 page=0 chnl=0
98 | char id=125 x=205 y=91 width=11 height=21 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0
99 | char id=126 x=81 y=365 width=13 height=7 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=0
100 | kernings count=0
101 |
--------------------------------------------------------------------------------
/android/app/src/main/assets/SFCompactRounded-Black-48.fnt:
--------------------------------------------------------------------------------
1 | info face="SFCompactRounded-Black" size=48 bold=0 italic=0 charset="" unicode=1 stretchH=100 smooth=1 aa=2 padding=0,0,0,0 spacing=0,0
2 | common lineHeight=57 base=46 scaleW=1024 scaleH=512 pages=1 packed=0 alphaChnl=0 redChnl=0 greenChnl=0 blueChnl=0
3 | page id=0 file="ultralight.png"
4 | chars count=95
5 | char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
6 | char id=33 x=192 y=161 width=11 height=34 xoffset=2 yoffset=12 xadvance=15 page=0 chnl=0
7 | char id=34 x=334 y=169 width=20 height=16 xoffset=1 yoffset=14 xadvance=23 page=0 chnl=0
8 | char id=35 x=422 y=80 width=30 height=34 xoffset=0 yoffset=12 xadvance=30 page=0 chnl=0
9 | char id=36 x=391 y=72 width=28 height=39 xoffset=1 yoffset=10 xadvance=30 page=0 chnl=0
10 | char id=37 x=422 y=42 width=34 height=36 xoffset=1 yoffset=12 xadvance=38 page=0 chnl=0
11 | char id=38 x=422 y=126 width=30 height=34 xoffset=1 yoffset=13 xadvance=34 page=0 chnl=0
12 | char id=39 x=192 y=197 width=10 height=16 xoffset=1 yoffset=14 xadvance=12 page=0 chnl=0
13 | char id=40 x=316 y=469 width=13 height=40 xoffset=2 yoffset=13 xadvance=18 page=0 chnl=0
14 | char id=41 x=334 y=222 width=14 height=40 xoffset=2 yoffset=13 xadvance=18 page=0 chnl=0
15 | char id=42 x=316 y=122 width=16 height=18 xoffset=3 yoffset=14 xadvance=22 page=0 chnl=0
16 | char id=43 x=391 y=113 width=28 height=28 xoffset=1 yoffset=18 xadvance=30 page=0 chnl=0
17 | char id=44 x=192 y=228 width=11 height=18 xoffset=0 yoffset=36 xadvance=11 page=0 chnl=0
18 | char id=45 x=316 y=110 width=16 height=10 xoffset=1 yoffset=28 xadvance=19 page=0 chnl=0
19 | char id=46 x=192 y=215 width=11 height=11 xoffset=2 yoffset=36 xadvance=14 page=0 chnl=0
20 | char id=47 x=362 y=145 width=17 height=42 xoffset=-1 yoffset=11 xadvance=16 page=0 chnl=0
21 | char id=48 x=362 y=109 width=27 height=34 xoffset=1 yoffset=13 xadvance=29 page=0 chnl=0
22 | char id=49 x=311 y=350 width=19 height=32 xoffset=0 yoffset=14 xadvance=21 page=0 chnl=0
23 | char id=50 x=334 y=65 width=25 height=33 xoffset=2 yoffset=13 xadvance=28 page=0 chnl=0
24 | char id=51 x=362 y=1 width=27 height=34 xoffset=1 yoffset=13 xadvance=29 page=0 chnl=0
25 | char id=52 x=391 y=1 width=29 height=33 xoffset=0 yoffset=13 xadvance=30 page=0 chnl=0
26 | char id=53 x=334 y=100 width=26 height=33 xoffset=2 yoffset=14 xadvance=29 page=0 chnl=0
27 | char id=54 x=362 y=37 width=27 height=34 xoffset=1 yoffset=13 xadvance=29 page=0 chnl=0
28 | char id=55 x=334 y=135 width=26 height=32 xoffset=0 yoffset=14 xadvance=27 page=0 chnl=0
29 | char id=56 x=391 y=36 width=29 height=34 xoffset=0 yoffset=13 xadvance=30 page=0 chnl=0
30 | char id=57 x=362 y=73 width=27 height=34 xoffset=1 yoffset=13 xadvance=29 page=0 chnl=0
31 | char id=58 x=192 y=285 width=11 height=26 xoffset=2 yoffset=21 xadvance=14 page=0 chnl=0
32 | char id=59 x=192 y=248 width=11 height=35 xoffset=1 yoffset=21 xadvance=14 page=0 chnl=0
33 | char id=60 x=334 y=432 width=25 height=26 xoffset=3 yoffset=20 xadvance=30 page=0 chnl=0
34 | char id=61 x=362 y=233 width=27 height=20 xoffset=1 yoffset=23 xadvance=30 page=0 chnl=0
35 | char id=62 x=334 y=460 width=25 height=26 xoffset=2 yoffset=20 xadvance=30 page=0 chnl=0
36 | char id=63 x=334 y=187 width=24 height=33 xoffset=0 yoffset=13 xadvance=24 page=0 chnl=0
37 | char id=64 x=422 y=1 width=37 height=39 xoffset=2 yoffset=14 xadvance=42 page=0 chnl=0
38 | char id=65 x=219 y=1 width=31 height=32 xoffset=0 yoffset=14 xadvance=32 page=0 chnl=0
39 | char id=66 x=219 y=35 width=28 height=32 xoffset=2 yoffset=14 xadvance=31 page=0 chnl=0
40 | char id=67 x=219 y=69 width=28 height=34 xoffset=1 yoffset=13 xadvance=31 page=0 chnl=0
41 | char id=68 x=219 y=105 width=29 height=32 xoffset=2 yoffset=14 xadvance=32 page=0 chnl=0
42 | char id=69 x=219 y=139 width=24 height=32 xoffset=2 yoffset=14 xadvance=28 page=0 chnl=0
43 | char id=70 x=219 y=173 width=24 height=32 xoffset=2 yoffset=14 xadvance=26 page=0 chnl=0
44 | char id=71 x=219 y=207 width=29 height=34 xoffset=1 yoffset=13 xadvance=32 page=0 chnl=0
45 | char id=72 x=219 y=243 width=30 height=32 xoffset=2 yoffset=14 xadvance=34 page=0 chnl=0
46 | char id=73 x=192 y=52 width=11 height=32 xoffset=2 yoffset=14 xadvance=15 page=0 chnl=0
47 | char id=74 x=219 y=277 width=25 height=33 xoffset=1 yoffset=14 xadvance=29 page=0 chnl=0
48 | char id=75 x=219 y=312 width=29 height=32 xoffset=2 yoffset=14 xadvance=32 page=0 chnl=0
49 | char id=76 x=219 y=346 width=23 height=32 xoffset=2 yoffset=14 xadvance=25 page=0 chnl=0
50 | char id=77 x=252 y=1 width=35 height=32 xoffset=2 yoffset=14 xadvance=40 page=0 chnl=0
51 | char id=78 x=219 y=380 width=28 height=32 xoffset=2 yoffset=14 xadvance=33 page=0 chnl=0
52 | char id=79 x=219 y=414 width=30 height=34 xoffset=1 yoffset=13 xadvance=33 page=0 chnl=0
53 | char id=80 x=219 y=450 width=27 height=32 xoffset=2 yoffset=14 xadvance=30 page=0 chnl=0
54 | char id=81 x=252 y=35 width=30 height=37 xoffset=1 yoffset=13 xadvance=33 page=0 chnl=0
55 | char id=82 x=252 y=74 width=28 height=32 xoffset=2 yoffset=14 xadvance=31 page=0 chnl=0
56 | char id=83 x=252 y=108 width=28 height=34 xoffset=1 yoffset=13 xadvance=30 page=0 chnl=0
57 | char id=84 x=252 y=144 width=28 height=32 xoffset=-1 yoffset=14 xadvance=26 page=0 chnl=0
58 | char id=85 x=252 y=178 width=29 height=33 xoffset=2 yoffset=14 xadvance=33 page=0 chnl=0
59 | char id=86 x=252 y=213 width=30 height=32 xoffset=0 yoffset=14 xadvance=31 page=0 chnl=0
60 | char id=87 x=289 y=1 width=43 height=32 xoffset=0 yoffset=14 xadvance=44 page=0 chnl=0
61 | char id=88 x=252 y=247 width=29 height=32 xoffset=0 yoffset=14 xadvance=30 page=0 chnl=0
62 | char id=89 x=252 y=281 width=29 height=32 xoffset=0 yoffset=14 xadvance=29 page=0 chnl=0
63 | char id=90 x=252 y=315 width=27 height=32 xoffset=1 yoffset=14 xadvance=29 page=0 chnl=0
64 | char id=91 x=334 y=264 width=17 height=38 xoffset=2 yoffset=14 xadvance=19 page=0 chnl=0
65 | char id=92 x=362 y=189 width=17 height=42 xoffset=-1 yoffset=11 xadvance=16 page=0 chnl=0
66 | char id=93 x=334 y=304 width=17 height=38 xoffset=0 yoffset=14 xadvance=19 page=0 chnl=0
67 | char id=94 x=334 y=488 width=20 height=15 xoffset=2 yoffset=13 xadvance=25 page=0 chnl=0
68 | char id=95 x=422 y=116 width=30 height=8 xoffset=-5 yoffset=48 xadvance=20 page=0 chnl=0
69 | char id=96 x=182 y=253 width=8 height=10 xoffset=7 yoffset=9 xadvance=22 page=0 chnl=0
70 | char id=97 x=219 y=484 width=24 height=26 xoffset=1 yoffset=20 xadvance=27 page=0 chnl=0
71 | char id=98 x=252 y=349 width=26 height=34 xoffset=2 yoffset=12 xadvance=30 page=0 chnl=0
72 | char id=99 x=252 y=385 width=24 height=27 xoffset=1 yoffset=20 xadvance=26 page=0 chnl=0
73 | char id=100 x=252 y=414 width=26 height=34 xoffset=1 yoffset=12 xadvance=30 page=0 chnl=0
74 | char id=101 x=252 y=450 width=25 height=27 xoffset=1 yoffset=20 xadvance=27 page=0 chnl=0
75 | char id=102 x=289 y=35 width=20 height=36 xoffset=0 yoffset=10 xadvance=20 page=0 chnl=0
76 | char id=103 x=289 y=73 width=26 height=35 xoffset=1 yoffset=20 xadvance=29 page=0 chnl=0
77 | char id=104 x=289 y=110 width=25 height=34 xoffset=2 yoffset=12 xadvance=30 page=0 chnl=0
78 | char id=105 x=192 y=86 width=10 height=36 xoffset=2 yoffset=10 xadvance=14 page=0 chnl=0
79 | char id=106 x=289 y=146 width=15 height=44 xoffset=-3 yoffset=10 xadvance=14 page=0 chnl=0
80 | char id=107 x=306 y=146 width=25 height=34 xoffset=2 yoffset=12 xadvance=29 page=0 chnl=0
81 | char id=108 x=192 y=124 width=10 height=35 xoffset=2 yoffset=11 xadvance=14 page=0 chnl=0
82 | char id=109 x=289 y=192 width=39 height=26 xoffset=2 yoffset=20 xadvance=43 page=0 chnl=0
83 | char id=110 x=252 y=479 width=25 height=26 xoffset=2 yoffset=20 xadvance=29 page=0 chnl=0
84 | char id=111 x=289 y=220 width=27 height=27 xoffset=0 yoffset=20 xadvance=28 page=0 chnl=0
85 | char id=112 x=289 y=249 width=26 height=34 xoffset=2 yoffset=20 xadvance=30 page=0 chnl=0
86 | char id=113 x=289 y=285 width=26 height=34 xoffset=1 yoffset=20 xadvance=30 page=0 chnl=0
87 | char id=114 x=311 y=35 width=19 height=26 xoffset=2 yoffset=20 xadvance=21 page=0 chnl=0
88 | char id=115 x=289 y=321 width=23 height=27 xoffset=1 yoffset=20 xadvance=26 page=0 chnl=0
89 | char id=116 x=289 y=350 width=20 height=33 xoffset=0 yoffset=14 xadvance=20 page=0 chnl=0
90 | char id=117 x=289 y=385 width=25 height=26 xoffset=2 yoffset=20 xadvance=29 page=0 chnl=0
91 | char id=118 x=289 y=413 width=25 height=26 xoffset=1 yoffset=20 xadvance=27 page=0 chnl=0
92 | char id=119 x=289 y=441 width=39 height=26 xoffset=0 yoffset=20 xadvance=40 page=0 chnl=0
93 | char id=120 x=289 y=469 width=25 height=26 xoffset=1 yoffset=20 xadvance=28 page=0 chnl=0
94 | char id=121 x=334 y=1 width=26 height=34 xoffset=0 yoffset=20 xadvance=27 page=0 chnl=0
95 | char id=122 x=334 y=37 width=23 height=26 xoffset=1 yoffset=20 xadvance=25 page=0 chnl=0
96 | char id=123 x=334 y=344 width=21 height=42 xoffset=0 yoffset=12 xadvance=21 page=0 chnl=0
97 | char id=124 x=192 y=313 width=10 height=43 xoffset=4 yoffset=11 xadvance=18 page=0 chnl=0
98 | char id=125 x=334 y=388 width=21 height=42 xoffset=0 yoffset=12 xadvance=21 page=0 chnl=0
99 | char id=126 x=289 y=497 width=24 height=14 xoffset=1 yoffset=22 xadvance=26 page=0 chnl=0
100 | kernings count=0
101 |
--------------------------------------------------------------------------------
/android/app/src/main/assets/flappy.fnt:
--------------------------------------------------------------------------------
1 | info face=flappy size=32 bold=0 italic=0 charset= unicode= stretchH=100 smooth=1 aa=1 padding=3,3,3,3 spacing=0,0 outline=0
2 | common lineHeight=36 base=25 scaleW=512 scaleH=512 pages=1 packed=0
3 | page id=0 file="flappy.png"
4 | chars count=10
5 | char id=48 x=494 y=59 width=14 height=20 xoffset=0 yoffset=0 xadvance=14 page=0 chnl=15
6 | char id=49 x=135 y=454 width=12 height=20 xoffset=2 yoffset=0 xadvance=14 page=0 chnl=15
7 | char id=50 x=291 y=159 width=14 height=20 xoffset=0 yoffset=0 xadvance=14 page=0 chnl=15
8 | char id=51 x=305 y=159 width=14 height=20 xoffset=0 yoffset=0 xadvance=14 page=0 chnl=15
9 | char id=52 x=319 y=159 width=14 height=20 xoffset=0 yoffset=0 xadvance=14 page=0 chnl=15
10 | char id=53 x=333 y=159 width=14 height=20 xoffset=0 yoffset=0 xadvance=14 page=0 chnl=15
11 | char id=54 x=291 y=183 width=14 height=20 xoffset=0 yoffset=0 xadvance=14 page=0 chnl=15
12 | char id=55 x=305 y=183 width=14 height=20 xoffset=0 yoffset=0 xadvance=14 page=0 chnl=15
13 | char id=56 x=319 y=183 width=14 height=20 xoffset=0 yoffset=0 xadvance=14 page=0 chnl=15
14 | char id=57 x=333 y=183 width=14 height=20 xoffset=0 yoffset=0 xadvance=14 page=0 chnl=15
15 | kernings count=0
16 |
--------------------------------------------------------------------------------
/android/app/src/main/assets/font.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/android/app/src/main/assets/font.png
--------------------------------------------------------------------------------
/android/app/src/main/assets/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/android/app/src/main/assets/icon.png
--------------------------------------------------------------------------------
/android/app/src/main/assets/icon/app-icon-iTunesArtwork.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/android/app/src/main/assets/icon/app-icon-iTunesArtwork.png
--------------------------------------------------------------------------------
/android/app/src/main/assets/icon/app-icon@120x120.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/android/app/src/main/assets/icon/app-icon@120x120.png
--------------------------------------------------------------------------------
/android/app/src/main/assets/icon/app-icon@152x152.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/android/app/src/main/assets/icon/app-icon@152x152.png
--------------------------------------------------------------------------------
/android/app/src/main/assets/icon/app-icon@167x167.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/android/app/src/main/assets/icon/app-icon@167x167.png
--------------------------------------------------------------------------------
/android/app/src/main/assets/icon/app-icon@180x180.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/android/app/src/main/assets/icon/app-icon@180x180.png
--------------------------------------------------------------------------------
/android/app/src/main/assets/icon/app-icon@22x22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/android/app/src/main/assets/icon/app-icon@22x22.png
--------------------------------------------------------------------------------
/android/app/src/main/assets/icon/app-icon@25x25.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/android/app/src/main/assets/icon/app-icon@25x25.png
--------------------------------------------------------------------------------
/android/app/src/main/assets/icon/app-icon@29x29.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/android/app/src/main/assets/icon/app-icon@29x29.png
--------------------------------------------------------------------------------
/android/app/src/main/assets/icon/app-icon@44x44.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/android/app/src/main/assets/icon/app-icon@44x44.png
--------------------------------------------------------------------------------
/android/app/src/main/assets/icon/app-icon@50x50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/android/app/src/main/assets/icon/app-icon@50x50.png
--------------------------------------------------------------------------------
/android/app/src/main/assets/icon/app-icon@58x58.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/android/app/src/main/assets/icon/app-icon@58x58.png
--------------------------------------------------------------------------------
/android/app/src/main/assets/icon/app-icon@60x60.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/android/app/src/main/assets/icon/app-icon@60x60.png
--------------------------------------------------------------------------------
/android/app/src/main/assets/icon/app-icon@66x66.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/android/app/src/main/assets/icon/app-icon@66x66.png
--------------------------------------------------------------------------------
/android/app/src/main/assets/icon/app-icon@75x75.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/android/app/src/main/assets/icon/app-icon@75x75.png
--------------------------------------------------------------------------------
/android/app/src/main/assets/icon/app-icon@76x76.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/android/app/src/main/assets/icon/app-icon@76x76.png
--------------------------------------------------------------------------------
/android/app/src/main/assets/icon/app-icon@80x80.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/android/app/src/main/assets/icon/app-icon@80x80.png
--------------------------------------------------------------------------------
/android/app/src/main/assets/icon/app-icon@87x87.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/android/app/src/main/assets/icon/app-icon@87x87.png
--------------------------------------------------------------------------------
/android/app/src/main/assets/icon_1024.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/android/app/src/main/assets/icon_1024.png
--------------------------------------------------------------------------------
/android/app/src/main/assets/icon_120.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/android/app/src/main/assets/icon_120.png
--------------------------------------------------------------------------------
/android/app/src/main/assets/icon_180.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/android/app/src/main/assets/icon_180.png
--------------------------------------------------------------------------------
/android/app/src/main/assets/icon_40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/android/app/src/main/assets/icon_40.png
--------------------------------------------------------------------------------
/android/app/src/main/assets/icon_60.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/android/app/src/main/assets/icon_60.png
--------------------------------------------------------------------------------
/android/app/src/main/assets/icon_80.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/android/app/src/main/assets/icon_80.png
--------------------------------------------------------------------------------
/android/app/src/main/assets/icon_87.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/android/app/src/main/assets/icon_87.png
--------------------------------------------------------------------------------
/android/app/src/main/assets/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/android/app/src/main/assets/logo.png
--------------------------------------------------------------------------------
/android/app/src/main/assets/ultralight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/android/app/src/main/assets/ultralight.png
--------------------------------------------------------------------------------
/android/app/src/main/ic_launcher-web.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/android/app/src/main/ic_launcher-web.png
--------------------------------------------------------------------------------
/android/app/src/main/java/com/jaredforsyth/purplemaze/MainActivity.java:
--------------------------------------------------------------------------------
1 | package com.jaredforsyth.purplemaze;
2 |
3 | import com.jaredforsyth.reasongl.ReasonglActivity;
4 |
5 | public class MainActivity extends ReasonglActivity {
6 | // Nothing to override at the moment.
7 | }
8 |
--------------------------------------------------------------------------------
/android/app/src/main/jniLibs/armeabi-v7a/libasmrun_shared.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/android/app/src/main/jniLibs/armeabi-v7a/libasmrun_shared.so
--------------------------------------------------------------------------------
/android/app/src/main/jniLibs/armeabi-v7a/libgravitron.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/android/app/src/main/jniLibs/armeabi-v7a/libgravitron.so
--------------------------------------------------------------------------------
/android/app/src/main/jniLibs/armeabi-v7a/libreasongl.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/android/app/src/main/jniLibs/armeabi-v7a/libreasongl.so
--------------------------------------------------------------------------------
/android/app/src/main/jniLibs/x86/libreasongl.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/android/app/src/main/jniLibs/x86/libreasongl.so
--------------------------------------------------------------------------------
/android/app/src/main/res/layout/activity_main.xml:
--------------------------------------------------------------------------------
1 |
2 |
11 |
12 |
16 |
17 |
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/values-w820dp/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 | 64dp
6 |
7 |
--------------------------------------------------------------------------------
/android/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #3F51B5
4 | #303F9F
5 | #FF4081
6 |
7 |
--------------------------------------------------------------------------------
/android/app/src/main/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 16dp
4 | 16dp
5 |
6 |
--------------------------------------------------------------------------------
/android/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | PurpleMaze
3 |
4 |
--------------------------------------------------------------------------------
/android/app/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/android/build.gradle:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 |
3 | buildscript {
4 | repositories {
5 | jcenter()
6 | }
7 | dependencies {
8 | classpath 'com.android.tools.build:gradle:2.3.0'
9 | }
10 | }
11 |
12 | allprojects {
13 | repositories {
14 | jcenter()
15 | }
16 | }
17 |
18 | task clean(type: Delete) {
19 | delete rootProject.buildDir
20 | }
21 |
--------------------------------------------------------------------------------
/android/gradle.properties:
--------------------------------------------------------------------------------
1 | # Project-wide Gradle settings.
2 |
3 | # IDE (e.g. Android Studio) users:
4 | # Gradle settings configured through the IDE *will override*
5 | # any settings specified in this file.
6 |
7 | # For more details on how to configure your build environment visit
8 | # http://www.gradle.org/docs/current/userguide/build_environment.html
9 |
10 | # Specifies the JVM arguments used for the daemon process.
11 | # The setting is particularly useful for tweaking memory settings.
12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m
13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
14 |
15 | # When configured, Gradle will run in incubating parallel mode.
16 | # This option should only be used with decoupled projects. More details, visit
17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
18 | # org.gradle.parallel=true
--------------------------------------------------------------------------------
/android/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/android/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/android/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Thu Jul 27 17:46:02 PDT 2017
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
7 |
--------------------------------------------------------------------------------
/android/gradlew:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env bash
2 |
3 | ##############################################################################
4 | ##
5 | ## Gradle start up script for UN*X
6 | ##
7 | ##############################################################################
8 |
9 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
10 | DEFAULT_JVM_OPTS=""
11 |
12 | APP_NAME="Gradle"
13 | APP_BASE_NAME=`basename "$0"`
14 |
15 | # Use the maximum available, or set MAX_FD != -1 to use that value.
16 | MAX_FD="maximum"
17 |
18 | warn ( ) {
19 | echo "$*"
20 | }
21 |
22 | die ( ) {
23 | echo
24 | echo "$*"
25 | echo
26 | exit 1
27 | }
28 |
29 | # OS specific support (must be 'true' or 'false').
30 | cygwin=false
31 | msys=false
32 | darwin=false
33 | case "`uname`" in
34 | CYGWIN* )
35 | cygwin=true
36 | ;;
37 | Darwin* )
38 | darwin=true
39 | ;;
40 | MINGW* )
41 | msys=true
42 | ;;
43 | esac
44 |
45 | # Attempt to set APP_HOME
46 | # Resolve links: $0 may be a link
47 | PRG="$0"
48 | # Need this for relative symlinks.
49 | while [ -h "$PRG" ] ; do
50 | ls=`ls -ld "$PRG"`
51 | link=`expr "$ls" : '.*-> \(.*\)$'`
52 | if expr "$link" : '/.*' > /dev/null; then
53 | PRG="$link"
54 | else
55 | PRG=`dirname "$PRG"`"/$link"
56 | fi
57 | done
58 | SAVED="`pwd`"
59 | cd "`dirname \"$PRG\"`/" >/dev/null
60 | APP_HOME="`pwd -P`"
61 | cd "$SAVED" >/dev/null
62 |
63 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
64 |
65 | # Determine the Java command to use to start the JVM.
66 | if [ -n "$JAVA_HOME" ] ; then
67 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
68 | # IBM's JDK on AIX uses strange locations for the executables
69 | JAVACMD="$JAVA_HOME/jre/sh/java"
70 | else
71 | JAVACMD="$JAVA_HOME/bin/java"
72 | fi
73 | if [ ! -x "$JAVACMD" ] ; then
74 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
75 |
76 | Please set the JAVA_HOME variable in your environment to match the
77 | location of your Java installation."
78 | fi
79 | else
80 | JAVACMD="java"
81 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
82 |
83 | Please set the JAVA_HOME variable in your environment to match the
84 | location of your Java installation."
85 | fi
86 |
87 | # Increase the maximum file descriptors if we can.
88 | if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then
89 | MAX_FD_LIMIT=`ulimit -H -n`
90 | if [ $? -eq 0 ] ; then
91 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
92 | MAX_FD="$MAX_FD_LIMIT"
93 | fi
94 | ulimit -n $MAX_FD
95 | if [ $? -ne 0 ] ; then
96 | warn "Could not set maximum file descriptor limit: $MAX_FD"
97 | fi
98 | else
99 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
100 | fi
101 | fi
102 |
103 | # For Darwin, add options to specify how the application appears in the dock
104 | if $darwin; then
105 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
106 | fi
107 |
108 | # For Cygwin, switch paths to Windows format before running java
109 | if $cygwin ; then
110 | APP_HOME=`cygpath --path --mixed "$APP_HOME"`
111 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
112 | JAVACMD=`cygpath --unix "$JAVACMD"`
113 |
114 | # We build the pattern for arguments to be converted via cygpath
115 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
116 | SEP=""
117 | for dir in $ROOTDIRSRAW ; do
118 | ROOTDIRS="$ROOTDIRS$SEP$dir"
119 | SEP="|"
120 | done
121 | OURCYGPATTERN="(^($ROOTDIRS))"
122 | # Add a user-defined pattern to the cygpath arguments
123 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then
124 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
125 | fi
126 | # Now convert the arguments - kludge to limit ourselves to /bin/sh
127 | i=0
128 | for arg in "$@" ; do
129 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
130 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
131 |
132 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
133 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
134 | else
135 | eval `echo args$i`="\"$arg\""
136 | fi
137 | i=$((i+1))
138 | done
139 | case $i in
140 | (0) set -- ;;
141 | (1) set -- "$args0" ;;
142 | (2) set -- "$args0" "$args1" ;;
143 | (3) set -- "$args0" "$args1" "$args2" ;;
144 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
145 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
146 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
147 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
148 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
149 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
150 | esac
151 | fi
152 |
153 | # Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules
154 | function splitJvmOpts() {
155 | JVM_OPTS=("$@")
156 | }
157 | eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS
158 | JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME"
159 |
160 | exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@"
161 |
--------------------------------------------------------------------------------
/android/gradlew.bat:
--------------------------------------------------------------------------------
1 | @if "%DEBUG%" == "" @echo off
2 | @rem ##########################################################################
3 | @rem
4 | @rem Gradle startup script for Windows
5 | @rem
6 | @rem ##########################################################################
7 |
8 | @rem Set local scope for the variables with windows NT shell
9 | if "%OS%"=="Windows_NT" setlocal
10 |
11 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
12 | set DEFAULT_JVM_OPTS=
13 |
14 | set DIRNAME=%~dp0
15 | if "%DIRNAME%" == "" set DIRNAME=.
16 | set APP_BASE_NAME=%~n0
17 | set APP_HOME=%DIRNAME%
18 |
19 | @rem Find java.exe
20 | if defined JAVA_HOME goto findJavaFromJavaHome
21 |
22 | set JAVA_EXE=java.exe
23 | %JAVA_EXE% -version >NUL 2>&1
24 | if "%ERRORLEVEL%" == "0" goto init
25 |
26 | echo.
27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
28 | echo.
29 | echo Please set the JAVA_HOME variable in your environment to match the
30 | echo location of your Java installation.
31 |
32 | goto fail
33 |
34 | :findJavaFromJavaHome
35 | set JAVA_HOME=%JAVA_HOME:"=%
36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe
37 |
38 | if exist "%JAVA_EXE%" goto init
39 |
40 | echo.
41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
42 | echo.
43 | echo Please set the JAVA_HOME variable in your environment to match the
44 | echo location of your Java installation.
45 |
46 | goto fail
47 |
48 | :init
49 | @rem Get command-line arguments, handling Windowz variants
50 |
51 | if not "%OS%" == "Windows_NT" goto win9xME_args
52 | if "%@eval[2+2]" == "4" goto 4NT_args
53 |
54 | :win9xME_args
55 | @rem Slurp the command line arguments.
56 | set CMD_LINE_ARGS=
57 | set _SKIP=2
58 |
59 | :win9xME_args_slurp
60 | if "x%~1" == "x" goto execute
61 |
62 | set CMD_LINE_ARGS=%*
63 | goto execute
64 |
65 | :4NT_args
66 | @rem Get arguments from the 4NT Shell from JP Software
67 | set CMD_LINE_ARGS=%$
68 |
69 | :execute
70 | @rem Setup the command line
71 |
72 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
73 |
74 | @rem Execute Gradle
75 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
76 |
77 | :end
78 | @rem End local scope for the variables with windows NT shell
79 | if "%ERRORLEVEL%"=="0" goto mainEnd
80 |
81 | :fail
82 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
83 | rem the _cmd.exe /c_ return code!
84 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
85 | exit /b 1
86 |
87 | :mainEnd
88 | if "%OS%"=="Windows_NT" endlocal
89 |
90 | :omega
91 |
--------------------------------------------------------------------------------
/android/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app'
2 | include ':reasongl-android'
3 | project(':reasongl-android').projectDir = new File(rootProject.projectDir, '.././node_modules/@jaredly/reasongl-android/android') // GENERATED
--------------------------------------------------------------------------------
/assets/.sf_compact_display_ultralight_48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/assets/.sf_compact_display_ultralight_48.png
--------------------------------------------------------------------------------
/assets/.sf_compact_display_ultralight_48.xml:
--------------------------------------------------------------------------------
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 |
--------------------------------------------------------------------------------
/assets/Reprocessing.h:
--------------------------------------------------------------------------------
1 | //
2 | // ViewController.h
3 | // OCamlTest
4 | //
5 | // Created by Wojciech Czekalski on 22.01.2017.
6 | // Copyright © 2017 wokalski. All rights reserved.
7 | //
8 |
9 | #import
10 | #import
11 |
12 | @interface ReprocessingViewController : GLKViewController
13 |
14 | @property (strong, nonatomic) EAGLContext *context;
15 |
16 |
17 | @end
18 |
--------------------------------------------------------------------------------
/assets/SFCompactDisplay-Regular-16.fnt:
--------------------------------------------------------------------------------
1 | info face="SFCompactDisplay-Regular" size=16 bold=0 italic=0 charset="" unicode=1 stretchH=100 smooth=1 aa=2 padding=0,0,0,0 spacing=0,0
2 | common lineHeight=19 base=16 scaleW=1024 scaleH=512 pages=1 packed=0 alphaChnl=0 redChnl=0 greenChnl=0 blueChnl=0
3 | page id=0 file="ultralight.png"
4 | chars count=95
5 | char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=3 page=0 chnl=0
6 | char id=33 x=94 y=49 width=2 height=11 xoffset=1 yoffset=5 xadvance=4 page=0 chnl=0
7 | char id=34 x=135 y=507 width=5 height=4 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0
8 | char id=35 x=571 y=131 width=9 height=11 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0
9 | char id=36 x=571 y=116 width=9 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0
10 | char id=37 x=582 y=116 width=11 height=12 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0
11 | char id=38 x=582 y=131 width=11 height=11 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0
12 | char id=39 x=93 y=446 width=3 height=4 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0
13 | char id=40 x=283 y=195 width=4 height=14 xoffset=1 yoffset=5 xadvance=5 page=0 chnl=0
14 | char id=41 x=283 y=247 width=4 height=14 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0
15 | char id=42 x=245 y=502 width=5 height=6 xoffset=1 yoffset=5 xadvance=7 page=0 chnl=0
16 | char id=43 x=1003 y=64 width=9 height=9 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0
17 | char id=44 x=93 y=452 width=3 height=4 xoffset=0 yoffset=14 xadvance=3 page=0 chnl=0
18 | char id=45 x=49 y=397 width=6 height=2 xoffset=0 yoffset=11 xadvance=6 page=0 chnl=0
19 | char id=46 x=52 y=103 width=3 height=2 xoffset=0 yoffset=14 xadvance=4 page=0 chnl=0
20 | char id=47 x=514 y=364 width=6 height=15 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0
21 | char id=48 x=1005 y=35 width=9 height=11 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0
22 | char id=49 x=454 y=93 width=5 height=11 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0
23 | char id=50 x=561 y=406 width=8 height=11 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0
24 | char id=51 x=561 y=424 width=8 height=12 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0
25 | char id=52 x=956 y=62 width=9 height=11 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0
26 | char id=53 x=561 y=442 width=8 height=11 xoffset=1 yoffset=5 xadvance=9 page=0 chnl=0
27 | char id=54 x=983 y=35 width=9 height=11 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0
28 | char id=55 x=983 y=48 width=8 height=11 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0
29 | char id=56 x=983 y=61 width=9 height=11 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0
30 | char id=57 x=994 y=35 width=9 height=11 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0
31 | char id=58 x=177 y=164 width=2 height=8 xoffset=1 yoffset=8 xadvance=4 page=0 chnl=0
32 | char id=59 x=177 y=59 width=3 height=10 xoffset=0 yoffset=8 xadvance=4 page=0 chnl=0
33 | char id=60 x=1016 y=35 width=7 height=10 xoffset=1 yoffset=7 xadvance=9 page=0 chnl=0
34 | char id=61 x=155 y=505 width=7 height=5 xoffset=1 yoffset=9 xadvance=9 page=0 chnl=0
35 | char id=62 x=994 y=48 width=7 height=10 xoffset=1 yoffset=7 xadvance=9 page=0 chnl=0
36 | char id=63 x=562 y=370 width=7 height=11 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0
37 | char id=64 x=1003 y=48 width=13 height=14 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0
38 | char id=65 x=1014 y=1 width=9 height=11 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0
39 | char id=66 x=512 y=334 width=8 height=11 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0
40 | char id=67 x=535 y=107 width=9 height=11 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0
41 | char id=68 x=535 y=120 width=9 height=11 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0
42 | char id=69 x=413 y=237 width=7 height=11 xoffset=1 yoffset=5 xadvance=9 page=0 chnl=0
43 | char id=70 x=413 y=306 width=7 height=11 xoffset=1 yoffset=5 xadvance=8 page=0 chnl=0
44 | char id=71 x=535 y=133 width=9 height=11 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0
45 | char id=72 x=535 y=148 width=9 height=11 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0
46 | char id=73 x=37 y=500 width=2 height=11 xoffset=1 yoffset=5 xadvance=4 page=0 chnl=0
47 | char id=74 x=513 y=196 width=7 height=11 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0
48 | char id=75 x=512 y=414 width=8 height=11 xoffset=1 yoffset=5 xadvance=9 page=0 chnl=0
49 | char id=76 x=513 y=296 width=7 height=11 xoffset=1 yoffset=5 xadvance=8 page=0 chnl=0
50 | char id=77 x=905 y=57 width=10 height=11 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0
51 | char id=78 x=535 y=161 width=9 height=11 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0
52 | char id=79 x=938 y=53 width=10 height=11 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0
53 | char id=80 x=535 y=174 width=8 height=11 xoffset=1 yoffset=5 xadvance=9 page=0 chnl=0
54 | char id=81 x=956 y=35 width=10 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0
55 | char id=82 x=536 y=188 width=8 height=11 xoffset=1 yoffset=5 xadvance=9 page=0 chnl=0
56 | char id=83 x=535 y=493 width=9 height=11 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0
57 | char id=84 x=536 y=201 width=8 height=11 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0
58 | char id=85 x=560 y=260 width=9 height=11 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0
59 | char id=86 x=956 y=49 width=10 height=11 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0
60 | char id=87 x=968 y=35 width=13 height=11 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0
61 | char id=88 x=560 y=298 width=9 height=11 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0
62 | char id=89 x=560 y=334 width=9 height=11 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0
63 | char id=90 x=560 y=460 width=9 height=11 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0
64 | char id=91 x=283 y=263 width=4 height=13 xoffset=1 yoffset=5 xadvance=5 page=0 chnl=0
65 | char id=92 x=538 y=421 width=6 height=15 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0
66 | char id=93 x=283 y=281 width=4 height=13 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0
67 | char id=94 x=173 y=267 width=6 height=5 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0
68 | char id=95 x=109 y=282 width=8 height=2 xoffset=-1 yoffset=16 xadvance=7 page=0 chnl=0
69 | char id=96 x=92 y=395 width=3 height=3 xoffset=2 yoffset=4 xadvance=7 page=0 chnl=0
70 | char id=97 x=325 y=339 width=7 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0
71 | char id=98 x=536 y=214 width=8 height=12 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0
72 | char id=99 x=444 y=239 width=8 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0
73 | char id=100 x=561 y=134 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0
74 | char id=101 x=450 y=405 width=8 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0
75 | char id=102 x=282 y=160 width=5 height=12 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0
76 | char id=103 x=561 y=152 width=8 height=12 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0
77 | char id=104 x=513 y=456 width=7 height=12 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0
78 | char id=105 x=94 y=35 width=2 height=12 xoffset=1 yoffset=4 xadvance=4 page=0 chnl=0
79 | char id=106 x=283 y=178 width=4 height=15 xoffset=-1 yoffset=4 xadvance=4 page=0 chnl=0
80 | char id=107 x=513 y=470 width=7 height=12 xoffset=1 yoffset=4 xadvance=8 page=0 chnl=0
81 | char id=108 x=93 y=320 width=2 height=12 xoffset=1 yoffset=4 xadvance=4 page=0 chnl=0
82 | char id=109 x=968 y=48 width=12 height=9 xoffset=1 yoffset=7 xadvance=14 page=0 chnl=0
83 | char id=110 x=452 y=304 width=7 height=9 xoffset=1 yoffset=7 xadvance=9 page=0 chnl=0
84 | char id=111 x=561 y=170 width=8 height=9 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0
85 | char id=112 x=561 y=224 width=8 height=12 xoffset=1 yoffset=7 xadvance=9 page=0 chnl=0
86 | char id=113 x=561 y=242 width=8 height=12 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0
87 | char id=114 x=246 y=296 width=4 height=9 xoffset=1 yoffset=7 xadvance=5 page=0 chnl=0
88 | char id=115 x=537 y=439 width=7 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0
89 | char id=116 x=454 y=80 width=5 height=11 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0
90 | char id=117 x=537 y=457 width=7 height=9 xoffset=1 yoffset=7 xadvance=9 page=0 chnl=0
91 | char id=118 x=561 y=278 width=8 height=9 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0
92 | char id=119 x=968 y=59 width=11 height=9 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0
93 | char id=120 x=561 y=316 width=8 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0
94 | char id=121 x=561 y=352 width=8 height=12 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0
95 | char id=122 x=537 y=475 width=7 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0
96 | char id=123 x=514 y=347 width=6 height=15 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0
97 | char id=124 x=177 y=218 width=3 height=15 xoffset=1 yoffset=4 xadvance=5 page=0 chnl=0
98 | char id=125 x=454 y=126 width=5 height=15 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0
99 | char id=126 x=172 y=250 width=8 height=4 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0
100 | kernings count=0
101 |
--------------------------------------------------------------------------------
/assets/SFCompactDisplay-Regular-24.fnt:
--------------------------------------------------------------------------------
1 | info face="SFCompactDisplay-Regular" size=24 bold=0 italic=0 charset="" unicode=1 stretchH=100 smooth=1 aa=2 padding=0,0,0,0 spacing=0,0
2 | common lineHeight=29 base=23 scaleW=1024 scaleH=512 pages=1 packed=0 alphaChnl=0 redChnl=0 greenChnl=0 blueChnl=0
3 | page id=0 file="ultralight.png"
4 | chars count=95
5 | char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=5 page=0 chnl=0
6 | char id=33 x=245 y=484 width=4 height=16 xoffset=1 yoffset=7 xadvance=6 page=0 chnl=0
7 | char id=34 x=136 y=343 width=7 height=5 xoffset=1 yoffset=7 xadvance=9 page=0 chnl=0
8 | char id=35 x=920 y=54 width=14 height=16 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0
9 | char id=36 x=905 y=35 width=13 height=20 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0
10 | char id=37 x=920 y=35 width=16 height=17 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0
11 | char id=38 x=938 y=35 width=16 height=16 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0
12 | char id=39 x=53 y=302 width=3 height=5 xoffset=1 yoffset=7 xadvance=5 page=0 chnl=0
13 | char id=40 x=450 y=383 width=6 height=20 xoffset=1 yoffset=7 xadvance=7 page=0 chnl=0
14 | char id=41 x=513 y=174 width=6 height=20 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0
15 | char id=42 x=380 y=358 width=8 height=8 xoffset=1 yoffset=7 xadvance=11 page=0 chnl=0
16 | char id=43 x=885 y=57 width=12 height=13 xoffset=1 yoffset=10 xadvance=13 page=0 chnl=0
17 | char id=44 x=176 y=430 width=4 height=6 xoffset=0 yoffset=20 xadvance=5 page=0 chnl=0
18 | char id=45 x=135 y=417 width=9 height=3 xoffset=0 yoffset=15 xadvance=9 page=0 chnl=0
19 | char id=46 x=91 y=306 width=4 height=3 xoffset=1 yoffset=20 xadvance=6 page=0 chnl=0
20 | char id=47 x=512 y=428 width=8 height=21 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0
21 | char id=48 x=858 y=35 width=12 height=16 xoffset=1 yoffset=7 xadvance=14 page=0 chnl=0
22 | char id=49 x=452 y=219 width=6 height=16 xoffset=1 yoffset=7 xadvance=9 page=0 chnl=0
23 | char id=50 x=803 y=35 width=11 height=16 xoffset=1 yoffset=7 xadvance=13 page=0 chnl=0
24 | char id=51 x=803 y=53 width=11 height=17 xoffset=1 yoffset=7 xadvance=13 page=0 chnl=0
25 | char id=52 x=816 y=35 width=12 height=16 xoffset=1 yoffset=7 xadvance=14 page=0 chnl=0
26 | char id=53 x=816 y=53 width=12 height=16 xoffset=1 yoffset=7 xadvance=14 page=0 chnl=0
27 | char id=54 x=830 y=35 width=12 height=16 xoffset=1 yoffset=7 xadvance=13 page=0 chnl=0
28 | char id=55 x=830 y=53 width=11 height=16 xoffset=1 yoffset=7 xadvance=13 page=0 chnl=0
29 | char id=56 x=844 y=35 width=12 height=16 xoffset=1 yoffset=7 xadvance=14 page=0 chnl=0
30 | char id=57 x=844 y=53 width=12 height=16 xoffset=1 yoffset=7 xadvance=13 page=0 chnl=0
31 | char id=58 x=176 y=469 width=4 height=12 xoffset=1 yoffset=11 xadvance=6 page=0 chnl=0
32 | char id=59 x=282 y=144 width=5 height=14 xoffset=0 yoffset=12 xadvance=6 page=0 chnl=0
33 | char id=60 x=872 y=35 width=11 height=14 xoffset=1 yoffset=10 xadvance=13 page=0 chnl=0
34 | char id=61 x=407 y=465 width=11 height=7 xoffset=1 yoffset=13 xadvance=13 page=0 chnl=0
35 | char id=62 x=872 y=51 width=11 height=14 xoffset=1 yoffset=10 xadvance=13 page=0 chnl=0
36 | char id=63 x=858 y=53 width=11 height=16 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0
37 | char id=64 x=885 y=35 width=18 height=20 xoffset=1 yoffset=7 xadvance=20 page=0 chnl=0
38 | char id=65 x=522 y=421 width=14 height=16 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0
39 | char id=66 x=522 y=439 width=13 height=16 xoffset=1 yoffset=7 xadvance=14 page=0 chnl=0
40 | char id=67 x=522 y=457 width=13 height=16 xoffset=1 yoffset=7 xadvance=15 page=0 chnl=0
41 | char id=68 x=522 y=475 width=13 height=16 xoffset=1 yoffset=7 xadvance=15 page=0 chnl=0
42 | char id=69 x=448 y=315 width=11 height=16 xoffset=1 yoffset=7 xadvance=13 page=0 chnl=0
43 | char id=70 x=522 y=493 width=11 height=16 xoffset=1 yoffset=7 xadvance=12 page=0 chnl=0
44 | char id=71 x=546 y=134 width=13 height=16 xoffset=1 yoffset=7 xadvance=15 page=0 chnl=0
45 | char id=72 x=546 y=152 width=13 height=16 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0
46 | char id=73 x=93 y=85 width=3 height=16 xoffset=1 yoffset=7 xadvance=6 page=0 chnl=0
47 | char id=74 x=449 y=349 width=10 height=16 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0
48 | char id=75 x=546 y=170 width=13 height=16 xoffset=1 yoffset=7 xadvance=14 page=0 chnl=0
49 | char id=76 x=546 y=188 width=11 height=16 xoffset=1 yoffset=7 xadvance=12 page=0 chnl=0
50 | char id=77 x=546 y=206 width=16 height=16 xoffset=1 yoffset=7 xadvance=19 page=0 chnl=0
51 | char id=78 x=546 y=224 width=13 height=16 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0
52 | char id=79 x=546 y=242 width=13 height=16 xoffset=1 yoffset=7 xadvance=15 page=0 chnl=0
53 | char id=80 x=546 y=260 width=12 height=16 xoffset=1 yoffset=7 xadvance=13 page=0 chnl=0
54 | char id=81 x=546 y=278 width=13 height=18 xoffset=1 yoffset=7 xadvance=15 page=0 chnl=0
55 | char id=82 x=546 y=298 width=12 height=16 xoffset=1 yoffset=7 xadvance=14 page=0 chnl=0
56 | char id=83 x=546 y=316 width=13 height=16 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0
57 | char id=84 x=546 y=334 width=12 height=16 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0
58 | char id=85 x=546 y=352 width=13 height=16 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0
59 | char id=86 x=546 y=370 width=14 height=16 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0
60 | char id=87 x=546 y=388 width=20 height=16 xoffset=0 yoffset=7 xadvance=20 page=0 chnl=0
61 | char id=88 x=546 y=406 width=13 height=16 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0
62 | char id=89 x=546 y=424 width=13 height=16 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0
63 | char id=90 x=546 y=442 width=13 height=16 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0
64 | char id=91 x=512 y=210 width=6 height=19 xoffset=1 yoffset=7 xadvance=8 page=0 chnl=0
65 | char id=92 x=511 y=484 width=8 height=21 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0
66 | char id=93 x=513 y=275 width=6 height=19 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0
67 | char id=94 x=316 y=432 width=9 height=7 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0
68 | char id=95 x=158 y=179 width=11 height=2 xoffset=-1 yoffset=24 xadvance=10 page=0 chnl=0
69 | char id=96 x=114 y=363 width=5 height=5 xoffset=3 yoffset=5 xadvance=11 page=0 chnl=0
70 | char id=97 x=448 y=333 width=10 height=13 xoffset=1 yoffset=10 xadvance=12 page=0 chnl=0
71 | char id=98 x=546 y=460 width=12 height=17 xoffset=1 yoffset=6 xadvance=14 page=0 chnl=0
72 | char id=99 x=449 y=367 width=10 height=13 xoffset=1 yoffset=10 xadvance=12 page=0 chnl=0
73 | char id=100 x=546 y=479 width=11 height=17 xoffset=1 yoffset=6 xadvance=14 page=0 chnl=0
74 | char id=101 x=444 y=497 width=11 height=13 xoffset=1 yoffset=10 xadvance=13 page=0 chnl=0
75 | char id=102 x=412 y=489 width=8 height=18 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0
76 | char id=103 x=705 y=47 width=11 height=17 xoffset=1 yoffset=10 xadvance=14 page=0 chnl=0
77 | char id=104 x=718 y=47 width=11 height=17 xoffset=1 yoffset=6 xadvance=14 page=0 chnl=0
78 | char id=105 x=246 y=277 width=4 height=17 xoffset=1 yoffset=6 xadvance=6 page=0 chnl=0
79 | char id=106 x=452 y=281 width=6 height=21 xoffset=-1 yoffset=6 xadvance=6 page=0 chnl=0
80 | char id=107 x=731 y=35 width=11 height=18 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0
81 | char id=108 x=177 y=40 width=3 height=17 xoffset=1 yoffset=6 xadvance=6 page=0 chnl=0
82 | char id=109 x=546 y=498 width=18 height=13 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0
83 | char id=110 x=731 y=55 width=11 height=13 xoffset=1 yoffset=10 xadvance=13 page=0 chnl=0
84 | char id=111 x=744 y=35 width=11 height=13 xoffset=1 yoffset=10 xadvance=13 page=0 chnl=0
85 | char id=112 x=757 y=35 width=12 height=17 xoffset=1 yoffset=10 xadvance=14 page=0 chnl=0
86 | char id=113 x=744 y=50 width=11 height=17 xoffset=1 yoffset=10 xadvance=14 page=0 chnl=0
87 | char id=114 x=353 y=329 width=7 height=13 xoffset=1 yoffset=10 xadvance=8 page=0 chnl=0
88 | char id=115 x=559 y=188 width=10 height=13 xoffset=1 yoffset=10 xadvance=12 page=0 chnl=0
89 | char id=116 x=382 y=273 width=7 height=16 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0
90 | char id=117 x=757 y=54 width=11 height=13 xoffset=1 yoffset=10 xadvance=13 page=0 chnl=0
91 | char id=118 x=771 y=35 width=11 height=13 xoffset=0 yoffset=10 xadvance=11 page=0 chnl=0
92 | char id=119 x=784 y=35 width=17 height=13 xoffset=0 yoffset=10 xadvance=17 page=0 chnl=0
93 | char id=120 x=784 y=50 width=12 height=13 xoffset=0 yoffset=10 xadvance=12 page=0 chnl=0
94 | char id=121 x=771 y=50 width=11 height=17 xoffset=0 yoffset=10 xadvance=11 page=0 chnl=0
95 | char id=122 x=559 y=479 width=10 height=13 xoffset=1 yoffset=10 xadvance=11 page=0 chnl=0
96 | char id=123 x=512 y=311 width=8 height=21 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0
97 | char id=124 x=284 y=35 width=3 height=21 xoffset=2 yoffset=6 xadvance=8 page=0 chnl=0
98 | char id=125 x=512 y=391 width=8 height=21 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0
99 | char id=126 x=316 y=405 width=12 height=6 xoffset=0 yoffset=12 xadvance=13 page=0 chnl=0
100 | kernings count=0
101 |
--------------------------------------------------------------------------------
/assets/SFCompactDisplay-Regular-48.fnt:
--------------------------------------------------------------------------------
1 | info face="SFCompactDisplay-Regular" size=48 bold=0 italic=0 charset="" unicode=1 stretchH=100 smooth=1 aa=2 padding=0,0,0,0 spacing=0,0
2 | common lineHeight=57 base=46 scaleW=1024 scaleH=512 pages=1 packed=0 alphaChnl=0 redChnl=0 greenChnl=0 blueChnl=0
3 | page id=0 file="ultralight.png"
4 | chars count=95
5 | char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0
6 | char id=33 x=281 y=315 width=6 height=32 xoffset=3 yoffset=14 xadvance=12 page=0 chnl=0
7 | char id=34 x=444 y=485 width=13 height=10 xoffset=2 yoffset=14 xadvance=17 page=0 chnl=0
8 | char id=35 x=644 y=35 width=27 height=32 xoffset=1 yoffset=14 xadvance=28 page=0 chnl=0
9 | char id=36 x=571 y=75 width=24 height=39 xoffset=1 yoffset=10 xadvance=27 page=0 chnl=0
10 | char id=37 x=609 y=35 width=33 height=34 xoffset=0 yoffset=12 xadvance=33 page=0 chnl=0
11 | char id=38 x=673 y=35 width=30 height=32 xoffset=1 yoffset=14 xadvance=30 page=0 chnl=0
12 | char id=39 x=245 y=190 width=5 height=10 xoffset=2 yoffset=14 xadvance=9 page=0 chnl=0
13 | char id=40 x=502 y=347 width=10 height=39 xoffset=3 yoffset=14 xadvance=14 page=0 chnl=0
14 | char id=41 x=522 y=107 width=11 height=39 xoffset=1 yoffset=14 xadvance=14 page=0 chnl=0
15 | char id=42 x=522 y=404 width=16 height=15 xoffset=3 yoffset=14 xadvance=22 page=0 chnl=0
16 | char id=43 x=546 y=107 width=23 height=25 xoffset=2 yoffset=21 xadvance=27 page=0 chnl=0
17 | char id=44 x=381 y=145 width=8 height=11 xoffset=0 yoffset=41 xadvance=10 page=0 chnl=0
18 | char id=45 x=252 y=507 width=16 height=4 xoffset=1 yoffset=31 xadvance=18 page=0 chnl=0
19 | char id=46 x=173 y=404 width=7 height=6 xoffset=2 yoffset=40 xadvance=11 page=0 chnl=0
20 | char id=47 x=522 y=316 width=16 height=42 xoffset=0 yoffset=12 xadvance=16 page=0 chnl=0
21 | char id=48 x=903 y=1 width=23 height=32 xoffset=2 yoffset=14 xadvance=27 page=0 chnl=0
22 | char id=49 x=505 y=238 width=13 height=32 xoffset=2 yoffset=14 xadvance=19 page=0 chnl=0
23 | char id=50 x=729 y=1 width=22 height=32 xoffset=2 yoffset=14 xadvance=26 page=0 chnl=0
24 | char id=51 x=546 y=71 width=23 height=34 xoffset=2 yoffset=14 xadvance=26 page=0 chnl=0
25 | char id=52 x=753 y=1 width=24 height=32 xoffset=2 yoffset=14 xadvance=27 page=0 chnl=0
26 | char id=53 x=779 y=1 width=23 height=32 xoffset=3 yoffset=14 xadvance=28 page=0 chnl=0
27 | char id=54 x=804 y=1 width=23 height=32 xoffset=2 yoffset=14 xadvance=27 page=0 chnl=0
28 | char id=55 x=829 y=1 width=21 height=32 xoffset=2 yoffset=14 xadvance=25 page=0 chnl=0
29 | char id=56 x=852 y=1 width=24 height=32 xoffset=2 yoffset=14 xadvance=28 page=0 chnl=0
30 | char id=57 x=878 y=1 width=23 height=32 xoffset=2 yoffset=14 xadvance=27 page=0 chnl=0
31 | char id=58 x=353 y=304 width=6 height=23 xoffset=3 yoffset=23 xadvance=12 page=0 chnl=0
32 | char id=59 x=381 y=158 width=8 height=28 xoffset=1 yoffset=24 xadvance=12 page=0 chnl=0
33 | char id=60 x=950 y=1 width=21 height=27 xoffset=3 yoffset=20 xadvance=27 page=0 chnl=0
34 | char id=61 x=996 y=17 width=21 height=13 xoffset=3 yoffset=27 xadvance=27 page=0 chnl=0
35 | char id=62 x=973 y=1 width=21 height=27 xoffset=3 yoffset=20 xadvance=27 page=0 chnl=0
36 | char id=63 x=928 y=1 width=20 height=32 xoffset=1 yoffset=14 xadvance=22 page=0 chnl=0
37 | char id=64 x=571 y=35 width=36 height=38 xoffset=2 yoffset=15 xadvance=39 page=0 chnl=0
38 | char id=65 x=422 y=281 width=28 height=32 xoffset=0 yoffset=14 xadvance=28 page=0 chnl=0
39 | char id=66 x=422 y=315 width=24 height=32 xoffset=3 yoffset=14 xadvance=29 page=0 chnl=0
40 | char id=67 x=422 y=349 width=25 height=32 xoffset=2 yoffset=14 xadvance=29 page=0 chnl=0
41 | char id=68 x=422 y=383 width=26 height=32 xoffset=3 yoffset=14 xadvance=30 page=0 chnl=0
42 | char id=69 x=422 y=417 width=21 height=32 xoffset=3 yoffset=14 xadvance=26 page=0 chnl=0
43 | char id=70 x=422 y=451 width=20 height=32 xoffset=3 yoffset=14 xadvance=24 page=0 chnl=0
44 | char id=71 x=461 y=1 width=26 height=32 xoffset=2 yoffset=14 xadvance=30 page=0 chnl=0
45 | char id=72 x=461 y=35 width=26 height=32 xoffset=3 yoffset=14 xadvance=32 page=0 chnl=0
46 | char id=73 x=282 y=74 width=5 height=32 xoffset=3 yoffset=14 xadvance=12 page=0 chnl=0
47 | char id=74 x=461 y=69 width=19 height=32 xoffset=0 yoffset=14 xadvance=23 page=0 chnl=0
48 | char id=75 x=461 y=103 width=25 height=32 xoffset=3 yoffset=14 xadvance=28 page=0 chnl=0
49 | char id=76 x=461 y=137 width=20 height=32 xoffset=3 yoffset=14 xadvance=23 page=0 chnl=0
50 | char id=77 x=489 y=1 width=31 height=32 xoffset=3 yoffset=14 xadvance=37 page=0 chnl=0
51 | char id=78 x=461 y=171 width=26 height=32 xoffset=3 yoffset=14 xadvance=32 page=0 chnl=0
52 | char id=79 x=489 y=35 width=27 height=32 xoffset=2 yoffset=14 xadvance=31 page=0 chnl=0
53 | char id=80 x=461 y=205 width=23 height=32 xoffset=3 yoffset=14 xadvance=27 page=0 chnl=0
54 | char id=81 x=489 y=69 width=27 height=35 xoffset=2 yoffset=14 xadvance=31 page=0 chnl=0
55 | char id=82 x=461 y=239 width=24 height=32 xoffset=3 yoffset=14 xadvance=28 page=0 chnl=0
56 | char id=83 x=461 y=273 width=24 height=32 xoffset=1 yoffset=14 xadvance=27 page=0 chnl=0
57 | char id=84 x=461 y=307 width=24 height=32 xoffset=0 yoffset=14 xadvance=24 page=0 chnl=0
58 | char id=85 x=461 y=341 width=25 height=32 xoffset=3 yoffset=14 xadvance=31 page=0 chnl=0
59 | char id=86 x=489 y=106 width=28 height=32 xoffset=0 yoffset=14 xadvance=28 page=0 chnl=0
60 | char id=87 x=522 y=1 width=39 height=32 xoffset=0 yoffset=14 xadvance=39 page=0 chnl=0
61 | char id=88 x=489 y=140 width=27 height=32 xoffset=0 yoffset=14 xadvance=26 page=0 chnl=0
62 | char id=89 x=461 y=375 width=26 height=32 xoffset=0 yoffset=14 xadvance=26 page=0 chnl=0
63 | char id=90 x=461 y=409 width=24 height=32 xoffset=1 yoffset=14 xadvance=27 page=0 chnl=0
64 | char id=91 x=522 y=148 width=11 height=38 xoffset=3 yoffset=14 xadvance=15 page=0 chnl=0
65 | char id=92 x=522 y=360 width=16 height=42 xoffset=0 yoffset=12 xadvance=16 page=0 chnl=0
66 | char id=93 x=522 y=188 width=12 height=38 xoffset=1 yoffset=14 xadvance=15 page=0 chnl=0
67 | char id=94 x=996 y=1 width=16 height=14 xoffset=1 yoffset=14 xadvance=18 page=0 chnl=0
68 | char id=95 x=306 y=182 width=22 height=4 xoffset=-1 yoffset=48 xadvance=20 page=0 chnl=0
69 | char id=96 x=323 y=63 width=9 height=8 xoffset=6 yoffset=11 xadvance=22 page=0 chnl=0
70 | char id=97 x=422 y=485 width=20 height=26 xoffset=2 yoffset=20 xadvance=25 page=0 chnl=0
71 | char id=98 x=461 y=443 width=22 height=34 xoffset=3 yoffset=12 xadvance=27 page=0 chnl=0
72 | char id=99 x=461 y=479 width=21 height=26 xoffset=2 yoffset=20 xadvance=24 page=0 chnl=0
73 | char id=100 x=489 y=174 width=22 height=34 xoffset=2 yoffset=12 xadvance=27 page=0 chnl=0
74 | char id=101 x=489 y=210 width=21 height=26 xoffset=2 yoffset=20 xadvance=25 page=0 chnl=0
75 | char id=102 x=489 y=238 width=14 height=35 xoffset=1 yoffset=11 xadvance=16 page=0 chnl=0
76 | char id=103 x=489 y=275 width=22 height=34 xoffset=2 yoffset=20 xadvance=27 page=0 chnl=0
77 | char id=104 x=489 y=311 width=21 height=34 xoffset=3 yoffset=12 xadvance=27 page=0 chnl=0
78 | char id=105 x=353 y=264 width=6 height=34 xoffset=3 yoffset=12 xadvance=12 page=0 chnl=0
79 | char id=106 x=489 y=347 width=11 height=42 xoffset=-2 yoffset=12 xadvance=12 page=0 chnl=0
80 | char id=107 x=489 y=391 width=21 height=35 xoffset=3 yoffset=11 xadvance=23 page=0 chnl=0
81 | char id=108 x=282 y=108 width=5 height=34 xoffset=3 yoffset=12 xadvance=12 page=0 chnl=0
82 | char id=109 x=563 y=1 width=35 height=26 xoffset=3 yoffset=20 xadvance=41 page=0 chnl=0
83 | char id=110 x=489 y=428 width=21 height=26 xoffset=3 yoffset=20 xadvance=27 page=0 chnl=0
84 | char id=111 x=489 y=456 width=22 height=26 xoffset=2 yoffset=20 xadvance=26 page=0 chnl=0
85 | char id=112 x=522 y=35 width=22 height=34 xoffset=3 yoffset=20 xadvance=27 page=0 chnl=0
86 | char id=113 x=522 y=71 width=22 height=34 xoffset=2 yoffset=20 xadvance=27 page=0 chnl=0
87 | char id=114 x=445 y=417 width=13 height=26 xoffset=3 yoffset=20 xadvance=16 page=0 chnl=0
88 | char id=115 x=489 y=484 width=20 height=26 xoffset=2 yoffset=20 xadvance=23 page=0 chnl=0
89 | char id=116 x=444 y=451 width=14 height=32 xoffset=1 yoffset=14 xadvance=16 page=0 chnl=0
90 | char id=117 x=600 y=1 width=21 height=26 xoffset=3 yoffset=20 xadvance=27 page=0 chnl=0
91 | char id=118 x=623 y=1 width=22 height=26 xoffset=0 yoffset=20 xadvance=22 page=0 chnl=0
92 | char id=119 x=647 y=1 width=34 height=26 xoffset=0 yoffset=20 xadvance=34 page=0 chnl=0
93 | char id=120 x=683 y=1 width=23 height=26 xoffset=0 yoffset=20 xadvance=23 page=0 chnl=0
94 | char id=121 x=546 y=35 width=23 height=34 xoffset=0 yoffset=20 xadvance=22 page=0 chnl=0
95 | char id=122 x=708 y=1 width=19 height=26 xoffset=2 yoffset=20 xadvance=23 page=0 chnl=0
96 | char id=123 x=522 y=228 width=15 height=42 xoffset=1 yoffset=12 xadvance=17 page=0 chnl=0
97 | char id=124 x=381 y=189 width=4 height=42 xoffset=6 yoffset=12 xadvance=16 page=0 chnl=0
98 | char id=125 x=522 y=272 width=15 height=42 xoffset=0 yoffset=12 xadvance=17 page=0 chnl=0
99 | char id=126 x=705 y=35 width=24 height=10 xoffset=1 yoffset=25 xadvance=26 page=0 chnl=0
100 | kernings count=0
101 |
--------------------------------------------------------------------------------
/assets/SFCompactDisplay-Ultralight-16.fnt:
--------------------------------------------------------------------------------
1 | info face="SFCompactDisplay-Ultralight" size=16 bold=0 italic=0 charset="" unicode=1 stretchH=100 smooth=1 aa=2 padding=0,0,0,0 spacing=0,0
2 | common lineHeight=19 base=16 scaleW=1024 scaleH=512 pages=1 packed=0 alphaChnl=0 redChnl=0 greenChnl=0 blueChnl=0
3 | page id=0 file="ultralight.png"
4 | chars count=95
5 | char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=3 page=0 chnl=0
6 | char id=33 x=54 y=209 width=2 height=11 xoffset=1 yoffset=5 xadvance=4 page=0 chnl=0
7 | char id=34 x=53 y=158 width=3 height=4 xoffset=1 yoffset=5 xadvance=5 page=0 chnl=0
8 | char id=35 x=192 y=26 width=9 height=11 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0
9 | char id=36 x=182 y=226 width=8 height=14 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0
10 | char id=37 x=192 y=12 width=10 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0
11 | char id=38 x=192 y=39 width=10 height=11 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0
12 | char id=39 x=54 y=61 width=1 height=4 xoffset=1 yoffset=5 xadvance=3 page=0 chnl=0
13 | char id=40 x=53 y=286 width=3 height=14 xoffset=1 yoffset=5 xadvance=4 page=0 chnl=0
14 | char id=41 x=92 y=223 width=4 height=14 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0
15 | char id=42 x=90 y=214 width=6 height=6 xoffset=1 yoffset=5 xadvance=7 page=0 chnl=0
16 | char id=43 x=182 y=242 width=8 height=9 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0
17 | char id=44 x=54 y=67 width=2 height=4 xoffset=0 yoffset=15 xadvance=3 page=0 chnl=0
18 | char id=45 x=50 y=368 width=6 height=1 xoffset=0 yoffset=11 xadvance=6 page=0 chnl=0
19 | char id=46 x=24 y=337 width=2 height=2 xoffset=1 yoffset=14 xadvance=3 page=0 chnl=0
20 | char id=47 x=114 y=329 width=5 height=15 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0
21 | char id=48 x=182 y=188 width=8 height=11 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0
22 | char id=49 x=92 y=153 width=4 height=11 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0
23 | char id=50 x=182 y=84 width=7 height=11 xoffset=1 yoffset=5 xadvance=8 page=0 chnl=0
24 | char id=51 x=182 y=97 width=8 height=11 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0
25 | char id=52 x=182 y=110 width=8 height=11 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0
26 | char id=53 x=182 y=123 width=8 height=11 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0
27 | char id=54 x=182 y=136 width=8 height=11 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0
28 | char id=55 x=182 y=149 width=8 height=11 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0
29 | char id=56 x=182 y=162 width=8 height=11 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0
30 | char id=57 x=182 y=175 width=8 height=11 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0
31 | char id=58 x=53 y=277 width=3 height=7 xoffset=0 yoffset=9 xadvance=3 page=0 chnl=0
32 | char id=59 x=54 y=222 width=2 height=10 xoffset=0 yoffset=9 xadvance=3 page=0 chnl=0
33 | char id=60 x=174 y=76 width=6 height=10 xoffset=1 yoffset=7 xadvance=9 page=0 chnl=0
34 | char id=61 x=81 y=214 width=7 height=4 xoffset=1 yoffset=10 xadvance=9 page=0 chnl=0
35 | char id=62 x=182 y=214 width=7 height=10 xoffset=1 yoffset=7 xadvance=9 page=0 chnl=0
36 | char id=63 x=182 y=201 width=7 height=11 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0
37 | char id=64 x=205 y=1 width=12 height=13 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0
38 | char id=65 x=109 y=500 width=9 height=11 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0
39 | char id=66 x=136 y=294 width=8 height=11 xoffset=1 yoffset=5 xadvance=9 page=0 chnl=0
40 | char id=67 x=136 y=330 width=8 height=11 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0
41 | char id=68 x=135 y=404 width=8 height=11 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0
42 | char id=69 x=137 y=258 width=7 height=11 xoffset=1 yoffset=5 xadvance=9 page=0 chnl=0
43 | char id=70 x=137 y=422 width=7 height=11 xoffset=1 yoffset=5 xadvance=8 page=0 chnl=0
44 | char id=71 x=136 y=458 width=8 height=11 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0
45 | char id=72 x=136 y=476 width=8 height=11 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0
46 | char id=73 x=54 y=35 width=2 height=11 xoffset=1 yoffset=5 xadvance=4 page=0 chnl=0
47 | char id=74 x=50 y=423 width=6 height=11 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0
48 | char id=75 x=135 y=494 width=8 height=11 xoffset=1 yoffset=5 xadvance=9 page=0 chnl=0
49 | char id=76 x=171 y=144 width=7 height=11 xoffset=1 yoffset=5 xadvance=8 page=0 chnl=0
50 | char id=77 x=170 y=328 width=10 height=11 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0
51 | char id=78 x=172 y=203 width=8 height=11 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0
52 | char id=79 x=172 y=237 width=8 height=11 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0
53 | char id=80 x=172 y=274 width=8 height=11 xoffset=1 yoffset=5 xadvance=9 page=0 chnl=0
54 | char id=81 x=171 y=292 width=8 height=13 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0
55 | char id=82 x=172 y=310 width=8 height=11 xoffset=1 yoffset=5 xadvance=9 page=0 chnl=0
56 | char id=83 x=146 y=430 width=8 height=11 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0
57 | char id=84 x=156 y=430 width=8 height=11 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0
58 | char id=85 x=166 y=430 width=8 height=11 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0
59 | char id=86 x=146 y=443 width=9 height=11 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0
60 | char id=87 x=157 y=443 width=13 height=11 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0
61 | char id=88 x=146 y=456 width=9 height=11 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0
62 | char id=89 x=157 y=456 width=9 height=11 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0
63 | char id=90 x=168 y=456 width=9 height=11 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0
64 | char id=91 x=93 y=70 width=3 height=13 xoffset=1 yoffset=5 xadvance=4 page=0 chnl=0
65 | char id=92 x=114 y=346 width=5 height=15 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0
66 | char id=93 x=92 y=239 width=4 height=13 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0
67 | char id=94 x=50 y=455 width=6 height=5 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0
68 | char id=95 x=80 y=66 width=8 height=2 xoffset=-1 yoffset=16 xadvance=7 page=0 chnl=0
69 | char id=96 x=53 y=164 width=3 height=3 xoffset=1 yoffset=4 xadvance=6 page=0 chnl=0
70 | char id=97 x=173 y=256 width=7 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0
71 | char id=98 x=173 y=390 width=7 height=12 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0
72 | char id=99 x=172 y=443 width=7 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0
73 | char id=100 x=146 y=469 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0
74 | char id=101 x=156 y=469 width=8 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0
75 | char id=102 x=91 y=277 width=5 height=12 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0
76 | char id=103 x=166 y=469 width=8 height=12 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0
77 | char id=104 x=146 y=483 width=7 height=12 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0
78 | char id=105 x=54 y=48 width=2 height=11 xoffset=1 yoffset=5 xadvance=3 page=0 chnl=0
79 | char id=106 x=52 y=486 width=4 height=14 xoffset=-1 yoffset=5 xadvance=3 page=0 chnl=0
80 | char id=107 x=146 y=497 width=7 height=12 xoffset=1 yoffset=4 xadvance=8 page=0 chnl=0
81 | char id=108 x=25 y=54 width=1 height=12 xoffset=1 yoffset=4 xadvance=3 page=0 chnl=0
82 | char id=109 x=155 y=483 width=11 height=9 xoffset=1 yoffset=7 xadvance=13 page=0 chnl=0
83 | char id=110 x=168 y=483 width=7 height=9 xoffset=1 yoffset=7 xadvance=9 page=0 chnl=0
84 | char id=111 x=155 y=494 width=8 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0
85 | char id=112 x=165 y=494 width=7 height=12 xoffset=1 yoffset=7 xadvance=9 page=0 chnl=0
86 | char id=113 x=182 y=1 width=8 height=12 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0
87 | char id=114 x=92 y=142 width=4 height=9 xoffset=1 yoffset=7 xadvance=5 page=0 chnl=0
88 | char id=115 x=182 y=15 width=7 height=9 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0
89 | char id=116 x=91 y=293 width=5 height=11 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0
90 | char id=117 x=182 y=26 width=7 height=9 xoffset=1 yoffset=7 xadvance=9 page=0 chnl=0
91 | char id=118 x=182 y=37 width=7 height=9 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0
92 | char id=119 x=192 y=1 width=11 height=9 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0
93 | char id=120 x=182 y=48 width=7 height=9 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0
94 | char id=121 x=182 y=59 width=7 height=12 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0
95 | char id=122 x=182 y=73 width=7 height=9 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0
96 | char id=123 x=91 y=401 width=5 height=15 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0
97 | char id=124 x=55 y=243 width=1 height=15 xoffset=1 yoffset=4 xadvance=3 page=0 chnl=0
98 | char id=125 x=90 y=485 width=5 height=15 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0
99 | char id=126 x=79 y=191 width=8 height=3 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0
100 | kernings count=0
101 |
--------------------------------------------------------------------------------
/assets/SFCompactDisplay-Ultralight-24.fnt:
--------------------------------------------------------------------------------
1 | info face="SFCompactDisplay-Ultralight" size=24 bold=0 italic=0 charset="" unicode=1 stretchH=100 smooth=1 aa=2 padding=0,0,0,0 spacing=0,0
2 | common lineHeight=29 base=23 scaleW=1024 scaleH=512 pages=1 packed=0 alphaChnl=0 redChnl=0 greenChnl=0 blueChnl=0
3 | page id=0 file="ultralight.png"
4 | chars count=95
5 | char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=5 page=0 chnl=0
6 | char id=33 x=53 y=107 width=3 height=16 xoffset=1 yoffset=7 xadvance=6 page=0 chnl=0
7 | char id=34 x=21 y=360 width=5 height=5 xoffset=1 yoffset=7 xadvance=7 page=0 chnl=0
8 | char id=35 x=146 y=412 width=14 height=16 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0
9 | char id=36 x=146 y=390 width=12 height=20 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0
10 | char id=37 x=165 y=369 width=15 height=17 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0
11 | char id=38 x=162 y=412 width=15 height=16 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0
12 | char id=39 x=24 y=443 width=2 height=5 xoffset=1 yoffset=7 xadvance=4 page=0 chnl=0
13 | char id=40 x=90 y=463 width=5 height=20 xoffset=1 yoffset=7 xadvance=7 page=0 chnl=0
14 | char id=41 x=52 y=464 width=4 height=20 xoffset=1 yoffset=7 xadvance=7 page=0 chnl=0
15 | char id=42 x=98 y=500 width=9 height=9 xoffset=1 yoffset=7 xadvance=11 page=0 chnl=0
16 | char id=43 x=160 y=390 width=11 height=12 xoffset=1 yoffset=10 xadvance=13 page=0 chnl=0
17 | char id=44 x=52 y=95 width=3 height=6 xoffset=0 yoffset=21 xadvance=4 page=0 chnl=0
18 | char id=45 x=48 y=333 width=8 height=1 xoffset=0 yoffset=16 xadvance=9 page=0 chnl=0
19 | char id=46 x=52 y=91 width=3 height=2 xoffset=1 yoffset=21 xadvance=5 page=0 chnl=0
20 | char id=47 x=164 y=346 width=7 height=21 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0
21 | char id=48 x=159 y=310 width=11 height=16 xoffset=1 yoffset=7 xadvance=13 page=0 chnl=0
22 | char id=49 x=50 y=437 width=5 height=16 xoffset=1 yoffset=7 xadvance=9 page=0 chnl=0
23 | char id=50 x=159 y=237 width=11 height=16 xoffset=1 yoffset=7 xadvance=13 page=0 chnl=0
24 | char id=51 x=146 y=256 width=11 height=16 xoffset=1 yoffset=7 xadvance=13 page=0 chnl=0
25 | char id=52 x=159 y=256 width=12 height=16 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0
26 | char id=53 x=146 y=274 width=11 height=16 xoffset=1 yoffset=7 xadvance=13 page=0 chnl=0
27 | char id=54 x=159 y=274 width=11 height=16 xoffset=1 yoffset=7 xadvance=13 page=0 chnl=0
28 | char id=55 x=146 y=292 width=10 height=16 xoffset=1 yoffset=7 xadvance=12 page=0 chnl=0
29 | char id=56 x=158 y=292 width=11 height=16 xoffset=1 yoffset=7 xadvance=13 page=0 chnl=0
30 | char id=57 x=146 y=310 width=11 height=16 xoffset=1 yoffset=7 xadvance=13 page=0 chnl=0
31 | char id=58 x=53 y=125 width=3 height=11 xoffset=1 yoffset=12 xadvance=5 page=0 chnl=0
32 | char id=59 x=53 y=141 width=3 height=15 xoffset=0 yoffset=12 xadvance=5 page=0 chnl=0
33 | char id=60 x=158 y=328 width=10 height=14 xoffset=1 yoffset=10 xadvance=13 page=0 chnl=0
34 | char id=61 x=79 y=133 width=10 height=6 xoffset=1 yoffset=14 xadvance=13 page=0 chnl=0
35 | char id=62 x=135 y=386 width=9 height=14 xoffset=2 yoffset=10 xadvance=13 page=0 chnl=0
36 | char id=63 x=146 y=328 width=10 height=16 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0
37 | char id=64 x=146 y=369 width=17 height=19 xoffset=1 yoffset=7 xadvance=19 page=0 chnl=0
38 | char id=65 x=81 y=196 width=13 height=16 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0
39 | char id=66 x=78 y=293 width=11 height=16 xoffset=2 yoffset=7 xadvance=14 page=0 chnl=0
40 | char id=67 x=79 y=320 width=12 height=16 xoffset=1 yoffset=7 xadvance=15 page=0 chnl=0
41 | char id=68 x=81 y=347 width=12 height=16 xoffset=2 yoffset=7 xadvance=15 page=0 chnl=0
42 | char id=69 x=79 y=401 width=10 height=16 xoffset=2 yoffset=7 xadvance=13 page=0 chnl=0
43 | char id=70 x=81 y=428 width=9 height=16 xoffset=2 yoffset=7 xadvance=12 page=0 chnl=0
44 | char id=71 x=121 y=204 width=12 height=16 xoffset=1 yoffset=7 xadvance=15 page=0 chnl=0
45 | char id=72 x=121 y=222 width=12 height=16 xoffset=2 yoffset=7 xadvance=16 page=0 chnl=0
46 | char id=73 x=24 y=319 width=2 height=16 xoffset=2 yoffset=7 xadvance=6 page=0 chnl=0
47 | char id=74 x=109 y=246 width=9 height=16 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0
48 | char id=75 x=121 y=240 width=11 height=16 xoffset=2 yoffset=7 xadvance=13 page=0 chnl=0
49 | char id=76 x=109 y=264 width=9 height=16 xoffset=2 yoffset=7 xadvance=12 page=0 chnl=0
50 | char id=77 x=121 y=258 width=14 height=16 xoffset=2 yoffset=7 xadvance=18 page=0 chnl=0
51 | char id=78 x=121 y=276 width=12 height=16 xoffset=2 yoffset=7 xadvance=16 page=0 chnl=0
52 | char id=79 x=121 y=294 width=13 height=16 xoffset=1 yoffset=7 xadvance=15 page=0 chnl=0
53 | char id=80 x=121 y=312 width=11 height=16 xoffset=2 yoffset=7 xadvance=13 page=0 chnl=0
54 | char id=81 x=121 y=330 width=13 height=18 xoffset=1 yoffset=7 xadvance=15 page=0 chnl=0
55 | char id=82 x=121 y=350 width=11 height=16 xoffset=2 yoffset=7 xadvance=14 page=0 chnl=0
56 | char id=83 x=121 y=368 width=11 height=16 xoffset=1 yoffset=7 xadvance=14 page=0 chnl=0
57 | char id=84 x=121 y=386 width=12 height=16 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0
58 | char id=85 x=121 y=404 width=12 height=16 xoffset=2 yoffset=7 xadvance=16 page=0 chnl=0
59 | char id=86 x=121 y=422 width=14 height=16 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0
60 | char id=87 x=121 y=440 width=20 height=16 xoffset=0 yoffset=7 xadvance=20 page=0 chnl=0
61 | char id=88 x=121 y=458 width=13 height=16 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0
62 | char id=89 x=121 y=476 width=13 height=16 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0
63 | char id=90 x=121 y=494 width=12 height=16 xoffset=1 yoffset=7 xadvance=14 page=0 chnl=0
64 | char id=91 x=113 y=286 width=5 height=19 xoffset=1 yoffset=7 xadvance=7 page=0 chnl=0
65 | char id=92 x=173 y=346 width=7 height=21 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0
66 | char id=93 x=113 y=307 width=5 height=19 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0
67 | char id=94 x=28 y=500 width=7 height=7 xoffset=1 yoffset=7 xadvance=9 page=0 chnl=0
68 | char id=95 x=42 y=506 width=12 height=2 xoffset=-1 yoffset=24 xadvance=10 page=0 chnl=0
69 | char id=96 x=21 y=367 width=4 height=4 xoffset=2 yoffset=5 xadvance=9 page=0 chnl=0
70 | char id=97 x=80 y=277 width=9 height=13 xoffset=1 yoffset=10 xadvance=12 page=0 chnl=0
71 | char id=98 x=146 y=144 width=11 height=18 xoffset=1 yoffset=5 xadvance=13 page=0 chnl=0
72 | char id=99 x=81 y=446 width=10 height=13 xoffset=1 yoffset=10 xadvance=12 page=0 chnl=0
73 | char id=100 x=159 y=144 width=10 height=18 xoffset=1 yoffset=5 xadvance=13 page=0 chnl=0
74 | char id=101 x=134 y=240 width=10 height=13 xoffset=1 yoffset=10 xadvance=12 page=0 chnl=0
75 | char id=102 x=137 y=103 width=7 height=17 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0
76 | char id=103 x=146 y=164 width=10 height=17 xoffset=1 yoffset=10 xadvance=13 page=0 chnl=0
77 | char id=104 x=146 y=183 width=10 height=18 xoffset=1 yoffset=5 xadvance=13 page=0 chnl=0
78 | char id=105 x=52 y=73 width=3 height=16 xoffset=1 yoffset=7 xadvance=5 page=0 chnl=0
79 | char id=106 x=50 y=401 width=5 height=20 xoffset=-1 yoffset=7 xadvance=5 page=0 chnl=0
80 | char id=107 x=158 y=183 width=10 height=18 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0
81 | char id=108 x=25 y=35 width=1 height=17 xoffset=2 yoffset=6 xadvance=5 page=0 chnl=0
82 | char id=109 x=158 y=164 width=17 height=13 xoffset=1 yoffset=10 xadvance=19 page=0 chnl=0
83 | char id=110 x=134 y=312 width=10 height=13 xoffset=1 yoffset=10 xadvance=13 page=0 chnl=0
84 | char id=111 x=146 y=203 width=11 height=13 xoffset=1 yoffset=10 xadvance=13 page=0 chnl=0
85 | char id=112 x=146 y=218 width=11 height=17 xoffset=1 yoffset=10 xadvance=13 page=0 chnl=0
86 | char id=113 x=170 y=183 width=10 height=17 xoffset=1 yoffset=10 xadvance=13 page=0 chnl=0
87 | char id=114 x=137 y=122 width=7 height=13 xoffset=1 yoffset=10 xadvance=8 page=0 chnl=0
88 | char id=115 x=135 y=204 width=9 height=13 xoffset=1 yoffset=10 xadvance=11 page=0 chnl=0
89 | char id=116 x=135 y=222 width=7 height=16 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0
90 | char id=117 x=134 y=350 width=10 height=13 xoffset=1 yoffset=10 xadvance=13 page=0 chnl=0
91 | char id=118 x=159 y=203 width=11 height=13 xoffset=0 yoffset=10 xadvance=11 page=0 chnl=0
92 | char id=119 x=159 y=218 width=16 height=13 xoffset=0 yoffset=10 xadvance=16 page=0 chnl=0
93 | char id=120 x=134 y=368 width=10 height=13 xoffset=0 yoffset=10 xadvance=11 page=0 chnl=0
94 | char id=121 x=146 y=237 width=11 height=17 xoffset=0 yoffset=10 xadvance=11 page=0 chnl=0
95 | char id=122 x=135 y=276 width=9 height=13 xoffset=1 yoffset=10 xadvance=11 page=0 chnl=0
96 | char id=123 x=146 y=346 width=7 height=21 xoffset=1 yoffset=6 xadvance=8 page=0 chnl=0
97 | char id=124 x=24 y=450 width=2 height=21 xoffset=1 yoffset=6 xadvance=5 page=0 chnl=0
98 | char id=125 x=155 y=346 width=7 height=21 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0
99 | char id=126 x=79 y=185 width=11 height=4 xoffset=1 yoffset=13 xadvance=13 page=0 chnl=0
100 | kernings count=0
101 |
--------------------------------------------------------------------------------
/assets/SFCompactDisplay-Ultralight-48.fnt:
--------------------------------------------------------------------------------
1 | info face="SFCompactDisplay-Ultralight" size=48 bold=0 italic=0 charset="" unicode=1 stretchH=100 smooth=1 aa=2 padding=0,0,0,0 spacing=0,0
2 | common lineHeight=57 base=46 scaleW=1024 scaleH=512 pages=1 packed=0 alphaChnl=0 redChnl=0 greenChnl=0 blueChnl=0
3 | page id=0 file="ultralight.png"
4 | chars count=95
5 | char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0
6 | char id=33 x=20 y=273 width=5 height=32 xoffset=3 yoffset=14 xadvance=11 page=0 chnl=0
7 | char id=34 x=48 y=311 width=8 height=10 xoffset=3 yoffset=14 xadvance=14 page=0 chnl=0
8 | char id=35 x=146 y=76 width=26 height=32 xoffset=1 yoffset=14 xadvance=28 page=0 chnl=0
9 | char id=36 x=121 y=147 width=22 height=40 xoffset=1 yoffset=10 xadvance=25 page=0 chnl=0
10 | char id=37 x=146 y=40 width=29 height=34 xoffset=1 yoffset=12 xadvance=31 page=0 chnl=0
11 | char id=38 x=146 y=110 width=28 height=32 xoffset=1 yoffset=14 xadvance=30 page=0 chnl=0
12 | char id=39 x=24 y=307 width=2 height=10 xoffset=3 yoffset=14 xadvance=8 page=0 chnl=0
13 | char id=40 x=80 y=463 width=8 height=39 xoffset=3 yoffset=14 xadvance=13 page=0 chnl=0
14 | char id=41 x=98 y=205 width=8 height=39 xoffset=2 yoffset=14 xadvance=13 page=0 chnl=0
15 | char id=42 x=80 y=258 width=16 height=17 xoffset=3 yoffset=14 xadvance=22 page=0 chnl=0
16 | char id=43 x=98 y=474 width=21 height=24 xoffset=2 yoffset=21 xadvance=25 page=0 chnl=0
17 | char id=44 x=21 y=347 width=5 height=11 xoffset=1 yoffset=43 xadvance=8 page=0 chnl=0
18 | char id=45 x=80 y=62 width=15 height=2 xoffset=1 yoffset=32 xadvance=18 page=0 chnl=0
19 | char id=46 x=21 y=341 width=4 height=4 xoffset=3 yoffset=42 xadvance=10 page=0 chnl=0
20 | char id=47 x=103 y=430 width=14 height=42 xoffset=0 yoffset=12 xadvance=15 page=0 chnl=0
21 | char id=48 x=98 y=137 width=21 height=32 xoffset=2 yoffset=14 xadvance=26 page=0 chnl=0
22 | char id=49 x=80 y=223 width=10 height=32 xoffset=2 yoffset=14 xadvance=18 page=0 chnl=0
23 | char id=50 x=58 y=463 width=20 height=32 xoffset=3 yoffset=14 xadvance=25 page=0 chnl=0
24 | char id=51 x=98 y=1 width=21 height=32 xoffset=2 yoffset=14 xadvance=26 page=0 chnl=0
25 | char id=52 x=121 y=1 width=23 height=32 xoffset=1 yoffset=14 xadvance=26 page=0 chnl=0
26 | char id=53 x=98 y=35 width=21 height=32 xoffset=2 yoffset=14 xadvance=26 page=0 chnl=0
27 | char id=54 x=121 y=35 width=22 height=32 xoffset=2 yoffset=14 xadvance=25 page=0 chnl=0
28 | char id=55 x=98 y=69 width=20 height=32 xoffset=2 yoffset=14 xadvance=25 page=0 chnl=0
29 | char id=56 x=121 y=69 width=22 height=32 xoffset=2 yoffset=14 xadvance=26 page=0 chnl=0
30 | char id=57 x=98 y=103 width=21 height=32 xoffset=2 yoffset=14 xadvance=25 page=0 chnl=0
31 | char id=58 x=49 y=374 width=5 height=21 xoffset=2 yoffset=25 xadvance=9 page=0 chnl=0
32 | char id=59 x=50 y=338 width=5 height=28 xoffset=1 yoffset=25 xadvance=10 page=0 chnl=0
33 | char id=60 x=98 y=372 width=18 height=27 xoffset=3 yoffset=20 xadvance=25 page=0 chnl=0
34 | char id=61 x=58 y=497 width=19 height=11 xoffset=3 yoffset=28 xadvance=25 page=0 chnl=0
35 | char id=62 x=98 y=401 width=18 height=27 xoffset=4 yoffset=20 xadvance=25 page=0 chnl=0
36 | char id=63 x=98 y=171 width=18 height=32 xoffset=1 yoffset=14 xadvance=20 page=0 chnl=0
37 | char id=64 x=146 y=1 width=34 height=37 xoffset=2 yoffset=15 xadvance=38 page=0 chnl=0
38 | char id=65 x=1 y=1 width=25 height=32 xoffset=1 yoffset=14 xadvance=28 page=0 chnl=0
39 | char id=66 x=1 y=35 width=22 height=32 xoffset=4 yoffset=14 xadvance=28 page=0 chnl=0
40 | char id=67 x=1 y=69 width=23 height=32 xoffset=3 yoffset=14 xadvance=29 page=0 chnl=0
41 | char id=68 x=1 y=103 width=23 height=32 xoffset=4 yoffset=14 xadvance=30 page=0 chnl=0
42 | char id=69 x=1 y=137 width=19 height=32 xoffset=4 yoffset=14 xadvance=26 page=0 chnl=0
43 | char id=70 x=1 y=171 width=18 height=32 xoffset=4 yoffset=14 xadvance=24 page=0 chnl=0
44 | char id=71 x=1 y=205 width=23 height=32 xoffset=3 yoffset=14 xadvance=30 page=0 chnl=0
45 | char id=72 x=1 y=239 width=23 height=32 xoffset=4 yoffset=14 xadvance=31 page=0 chnl=0
46 | char id=73 x=22 y=137 width=3 height=32 xoffset=4 yoffset=14 xadvance=12 page=0 chnl=0
47 | char id=74 x=1 y=273 width=17 height=32 xoffset=1 yoffset=14 xadvance=22 page=0 chnl=0
48 | char id=75 x=1 y=307 width=21 height=32 xoffset=4 yoffset=14 xadvance=26 page=0 chnl=0
49 | char id=76 x=1 y=341 width=18 height=32 xoffset=4 yoffset=14 xadvance=24 page=0 chnl=0
50 | char id=77 x=28 y=1 width=28 height=32 xoffset=4 yoffset=14 xadvance=37 page=0 chnl=0
51 | char id=78 x=1 y=375 width=23 height=32 xoffset=4 yoffset=14 xadvance=31 page=0 chnl=0
52 | char id=79 x=1 y=409 width=24 height=32 xoffset=3 yoffset=14 xadvance=31 page=0 chnl=0
53 | char id=80 x=1 y=443 width=21 height=32 xoffset=4 yoffset=14 xadvance=27 page=0 chnl=0
54 | char id=81 x=28 y=35 width=24 height=36 xoffset=3 yoffset=14 xadvance=31 page=0 chnl=0
55 | char id=82 x=1 y=477 width=21 height=32 xoffset=4 yoffset=14 xadvance=28 page=0 chnl=0
56 | char id=83 x=28 y=73 width=22 height=32 xoffset=2 yoffset=14 xadvance=27 page=0 chnl=0
57 | char id=84 x=28 y=107 width=23 height=32 xoffset=1 yoffset=14 xadvance=25 page=0 chnl=0
58 | char id=85 x=28 y=141 width=23 height=32 xoffset=4 yoffset=14 xadvance=31 page=0 chnl=0
59 | char id=86 x=28 y=175 width=26 height=32 xoffset=1 yoffset=14 xadvance=28 page=0 chnl=0
60 | char id=87 x=58 y=1 width=38 height=32 xoffset=1 yoffset=14 xadvance=40 page=0 chnl=0
61 | char id=88 x=28 y=209 width=24 height=32 xoffset=1 yoffset=14 xadvance=27 page=0 chnl=0
62 | char id=89 x=28 y=243 width=25 height=32 xoffset=0 yoffset=14 xadvance=26 page=0 chnl=0
63 | char id=90 x=28 y=277 width=23 height=32 xoffset=2 yoffset=14 xadvance=27 page=0 chnl=0
64 | char id=91 x=108 y=205 width=9 height=38 xoffset=3 yoffset=14 xadvance=13 page=0 chnl=0
65 | char id=92 x=121 y=103 width=14 height=42 xoffset=0 yoffset=12 xadvance=15 page=0 chnl=0
66 | char id=93 x=98 y=246 width=9 height=38 xoffset=1 yoffset=14 xadvance=13 page=0 chnl=0
67 | char id=94 x=79 y=169 width=14 height=14 xoffset=2 yoffset=14 xadvance=18 page=0 chnl=0
68 | char id=95 x=121 y=189 width=22 height=3 xoffset=-1 yoffset=48 xadvance=20 page=0 chnl=0
69 | char id=96 x=48 y=323 width=8 height=8 xoffset=4 yoffset=10 xadvance=18 page=0 chnl=0
70 | char id=97 x=28 y=311 width=18 height=25 xoffset=2 yoffset=21 xadvance=24 page=0 chnl=0
71 | char id=98 x=28 y=338 width=20 height=34 xoffset=3 yoffset=12 xadvance=26 page=0 chnl=0
72 | char id=99 x=28 y=374 width=19 height=25 xoffset=2 yoffset=21 xadvance=24 page=0 chnl=0
73 | char id=100 x=28 y=401 width=20 height=34 xoffset=2 yoffset=12 xadvance=26 page=0 chnl=0
74 | char id=101 x=28 y=437 width=20 height=25 xoffset=2 yoffset=21 xadvance=25 page=0 chnl=0
75 | char id=102 x=28 y=464 width=12 height=34 xoffset=1 yoffset=12 xadvance=14 page=0 chnl=0
76 | char id=103 x=58 y=35 width=20 height=33 xoffset=2 yoffset=21 xadvance=26 page=0 chnl=0
77 | char id=104 x=58 y=70 width=19 height=34 xoffset=3 yoffset=12 xadvance=26 page=0 chnl=0
78 | char id=105 x=21 y=171 width=4 height=32 xoffset=3 yoffset=14 xadvance=10 page=0 chnl=0
79 | char id=106 x=42 y=464 width=8 height=40 xoffset=-1 yoffset=14 xadvance=10 page=0 chnl=0
80 | char id=107 x=58 y=106 width=19 height=34 xoffset=3 yoffset=12 xadvance=23 page=0 chnl=0
81 | char id=108 x=24 y=477 width=2 height=34 xoffset=4 yoffset=12 xadvance=10 page=0 chnl=0
82 | char id=109 x=58 y=142 width=32 height=25 xoffset=3 yoffset=21 xadvance=39 page=0 chnl=0
83 | char id=110 x=58 y=169 width=19 height=25 xoffset=3 yoffset=21 xadvance=26 page=0 chnl=0
84 | char id=111 x=58 y=196 width=21 height=25 xoffset=2 yoffset=21 xadvance=25 page=0 chnl=0
85 | char id=112 x=58 y=223 width=20 height=33 xoffset=3 yoffset=21 xadvance=26 page=0 chnl=0
86 | char id=113 x=58 y=258 width=20 height=33 xoffset=2 yoffset=21 xadvance=26 page=0 chnl=0
87 | char id=114 x=80 y=35 width=12 height=25 xoffset=3 yoffset=21 xadvance=16 page=0 chnl=0
88 | char id=115 x=58 y=293 width=18 height=25 xoffset=2 yoffset=21 xadvance=22 page=0 chnl=0
89 | char id=116 x=79 y=70 width=12 height=31 xoffset=1 yoffset=15 xadvance=15 page=0 chnl=0
90 | char id=117 x=58 y=320 width=19 height=25 xoffset=3 yoffset=21 xadvance=26 page=0 chnl=0
91 | char id=118 x=58 y=347 width=21 height=25 xoffset=0 yoffset=21 xadvance=22 page=0 chnl=0
92 | char id=119 x=58 y=374 width=32 height=25 xoffset=0 yoffset=21 xadvance=33 page=0 chnl=0
93 | char id=120 x=58 y=401 width=19 height=25 xoffset=1 yoffset=21 xadvance=22 page=0 chnl=0
94 | char id=121 x=58 y=428 width=21 height=33 xoffset=0 yoffset=21 xadvance=22 page=0 chnl=0
95 | char id=122 x=79 y=106 width=17 height=25 xoffset=2 yoffset=21 xadvance=21 page=0 chnl=0
96 | char id=123 x=98 y=286 width=13 height=41 xoffset=2 yoffset=12 xadvance=16 page=0 chnl=0
97 | char id=124 x=98 y=430 width=3 height=42 xoffset=3 yoffset=12 xadvance=9 page=0 chnl=0
98 | char id=125 x=98 y=329 width=14 height=41 xoffset=0 yoffset=12 xadvance=16 page=0 chnl=0
99 | char id=126 x=121 y=194 width=22 height=8 xoffset=2 yoffset=26 xadvance=26 page=0 chnl=0
100 | kernings count=0
101 |
--------------------------------------------------------------------------------
/assets/SFCompactRounded-Black-16.fnt:
--------------------------------------------------------------------------------
1 | info face="SFCompactRounded-Black" size=16 bold=0 italic=0 charset="" unicode=1 stretchH=100 smooth=1 aa=2 padding=0,0,0,0 spacing=0,0
2 | common lineHeight=19 base=16 scaleW=1024 scaleH=512 pages=1 packed=0 alphaChnl=0 redChnl=0 greenChnl=0 blueChnl=0
3 | page id=0 file="ultralight.png"
4 | chars count=95
5 | char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=3 page=0 chnl=0
6 | char id=33 x=245 y=139 width=5 height=12 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0
7 | char id=34 x=79 y=419 width=7 height=6 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0
8 | char id=35 x=436 y=266 width=10 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0
9 | char id=36 x=437 y=250 width=10 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0
10 | char id=37 x=422 y=266 width=12 height=13 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0
11 | char id=38 x=448 y=266 width=11 height=12 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0
12 | char id=39 x=92 y=185 width=4 height=6 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0
13 | char id=40 x=245 y=153 width=5 height=14 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0
14 | char id=41 x=244 y=346 width=6 height=14 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0
15 | char id=42 x=182 y=503 width=6 height=7 xoffset=1 yoffset=5 xadvance=7 page=0 chnl=0
16 | char id=43 x=449 y=250 width=10 height=10 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0
17 | char id=44 x=88 y=419 width=4 height=7 xoffset=0 yoffset=12 xadvance=4 page=0 chnl=0
18 | char id=45 x=90 y=504 width=6 height=4 xoffset=0 yoffset=10 xadvance=6 page=0 chnl=0
19 | char id=46 x=92 y=388 width=4 height=5 xoffset=0 yoffset=12 xadvance=5 page=0 chnl=0
20 | char id=47 x=279 y=479 width=7 height=15 xoffset=-1 yoffset=4 xadvance=5 page=0 chnl=0
21 | char id=48 x=440 y=219 width=10 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0
22 | char id=49 x=280 y=349 width=7 height=11 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0
23 | char id=50 x=379 y=424 width=9 height=11 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0
24 | char id=51 x=379 y=479 width=10 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0
25 | char id=52 x=377 y=497 width=10 height=11 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0
26 | char id=53 x=408 y=143 width=10 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0
27 | char id=54 x=408 y=375 width=10 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0
28 | char id=55 x=380 y=443 width=9 height=11 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0
29 | char id=56 x=408 y=414 width=10 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0
30 | char id=57 x=407 y=474 width=10 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0
31 | char id=58 x=176 y=125 width=4 height=10 xoffset=0 yoffset=7 xadvance=5 page=0 chnl=0
32 | char id=59 x=176 y=110 width=4 height=13 xoffset=0 yoffset=7 xadvance=5 page=0 chnl=0
33 | char id=60 x=422 y=239 width=9 height=9 xoffset=1 yoffset=7 xadvance=10 page=0 chnl=0
34 | char id=61 x=311 y=63 width=10 height=7 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0
35 | char id=62 x=433 y=239 width=9 height=9 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0
36 | char id=63 x=279 y=461 width=8 height=11 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0
37 | char id=64 x=422 y=250 width=13 height=14 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0
38 | char id=65 x=205 y=183 width=11 height=11 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0
39 | char id=66 x=205 y=196 width=10 height=11 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0
40 | char id=67 x=205 y=209 width=10 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0
41 | char id=68 x=205 y=223 width=11 height=11 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0
42 | char id=69 x=205 y=236 width=9 height=11 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0
43 | char id=70 x=205 y=249 width=9 height=11 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0
44 | char id=71 x=205 y=262 width=10 height=12 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0
45 | char id=72 x=205 y=276 width=11 height=11 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0
46 | char id=73 x=182 y=422 width=5 height=11 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0
47 | char id=74 x=205 y=289 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0
48 | char id=75 x=205 y=303 width=11 height=11 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0
49 | char id=76 x=205 y=316 width=9 height=11 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0
50 | char id=77 x=407 y=434 width=13 height=11 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0
51 | char id=78 x=205 y=329 width=10 height=11 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0
52 | char id=79 x=205 y=342 width=11 height=12 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0
53 | char id=80 x=205 y=356 width=10 height=11 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0
54 | char id=81 x=205 y=369 width=11 height=13 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0
55 | char id=82 x=205 y=384 width=10 height=11 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0
56 | char id=83 x=205 y=397 width=10 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0
57 | char id=84 x=205 y=411 width=10 height=11 xoffset=-1 yoffset=5 xadvance=9 page=0 chnl=0
58 | char id=85 x=205 y=424 width=11 height=12 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0
59 | char id=86 x=205 y=438 width=10 height=11 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0
60 | char id=87 x=439 y=200 width=15 height=11 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0
61 | char id=88 x=205 y=451 width=10 height=11 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0
62 | char id=89 x=205 y=464 width=10 height=11 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0
63 | char id=90 x=205 y=477 width=10 height=11 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0
64 | char id=91 x=280 y=362 width=7 height=13 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0
65 | char id=92 x=279 y=496 width=7 height=15 xoffset=-1 yoffset=4 xadvance=5 page=0 chnl=0
66 | char id=93 x=244 y=362 width=6 height=13 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0
67 | char id=94 x=80 y=504 width=8 height=5 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0
68 | char id=95 x=160 y=404 width=11 height=4 xoffset=-2 yoffset=16 xadvance=7 page=0 chnl=0
69 | char id=96 x=53 y=169 width=3 height=4 xoffset=2 yoffset=3 xadvance=7 page=0 chnl=0
70 | char id=97 x=205 y=490 width=9 height=9 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0
71 | char id=98 x=350 y=222 width=10 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0
72 | char id=99 x=205 y=501 width=9 height=10 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0
73 | char id=100 x=278 y=385 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0
74 | char id=101 x=278 y=399 width=9 height=10 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0
75 | char id=102 x=182 y=435 width=7 height=12 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0
76 | char id=103 x=350 y=236 width=9 height=12 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0
77 | char id=104 x=350 y=250 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0
78 | char id=105 x=92 y=374 width=4 height=12 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0
79 | char id=106 x=182 y=449 width=5 height=15 xoffset=-1 yoffset=4 xadvance=5 page=0 chnl=0
80 | char id=107 x=379 y=255 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0
81 | char id=108 x=92 y=428 width=4 height=12 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0
82 | char id=109 x=318 y=238 width=14 height=9 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0
83 | char id=110 x=314 y=339 width=9 height=9 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0
84 | char id=111 x=379 y=291 width=9 height=10 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0
85 | char id=112 x=378 y=329 width=10 height=12 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0
86 | char id=113 x=380 y=309 width=9 height=12 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0
87 | char id=114 x=182 y=466 width=7 height=9 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0
88 | char id=115 x=182 y=477 width=8 height=10 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0
89 | char id=116 x=182 y=489 width=7 height=12 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0
90 | char id=117 x=380 y=347 width=9 height=9 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0
91 | char id=118 x=379 y=368 width=9 height=9 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0
92 | char id=119 x=407 y=454 width=13 height=9 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0
93 | char id=120 x=379 y=386 width=9 height=9 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0
94 | char id=121 x=379 y=406 width=9 height=12 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0
95 | char id=122 x=279 y=450 width=8 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0
96 | char id=123 x=280 y=414 width=7 height=15 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0
97 | char id=124 x=245 y=173 width=4 height=15 xoffset=1 yoffset=4 xadvance=6 page=0 chnl=0
98 | char id=125 x=280 y=431 width=7 height=15 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0
99 | char id=126 x=171 y=157 width=9 height=5 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0
100 | kernings count=0
101 |
--------------------------------------------------------------------------------
/assets/SFCompactRounded-Black-24.fnt:
--------------------------------------------------------------------------------
1 | info face="SFCompactRounded-Black" size=24 bold=0 italic=0 charset="" unicode=1 stretchH=100 smooth=1 aa=2 padding=0,0,0,0 spacing=0,0
2 | common lineHeight=29 base=23 scaleW=1024 scaleH=512 pages=1 packed=0 alphaChnl=0 redChnl=0 greenChnl=0 blueChnl=0
3 | page id=0 file="ultralight.png"
4 | chars count=95
5 | char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=5 page=0 chnl=0
6 | char id=33 x=174 y=494 width=6 height=17 xoffset=1 yoffset=6 xadvance=7 page=0 chnl=0
7 | char id=34 x=192 y=454 width=11 height=8 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0
8 | char id=35 x=422 y=200 width=15 height=17 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0
9 | char id=36 x=422 y=162 width=15 height=20 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0
10 | char id=37 x=439 y=162 width=18 height=18 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=0
11 | char id=38 x=422 y=219 width=16 height=18 xoffset=0 yoffset=6 xadvance=17 page=0 chnl=0
12 | char id=39 x=137 y=137 width=6 height=8 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0
13 | char id=40 x=182 y=352 width=7 height=21 xoffset=1 yoffset=6 xadvance=9 page=0 chnl=0
14 | char id=41 x=182 y=375 width=7 height=21 xoffset=1 yoffset=6 xadvance=9 page=0 chnl=0
15 | char id=42 x=205 y=172 width=9 height=9 xoffset=1 yoffset=7 xadvance=11 page=0 chnl=0
16 | char id=43 x=422 y=184 width=15 height=14 xoffset=0 yoffset=9 xadvance=15 page=0 chnl=0
17 | char id=44 x=182 y=305 width=6 height=9 xoffset=0 yoffset=18 xadvance=6 page=0 chnl=0
18 | char id=45 x=86 y=311 width=9 height=5 xoffset=0 yoffset=14 xadvance=9 page=0 chnl=0
19 | char id=46 x=78 y=311 width=6 height=6 xoffset=1 yoffset=18 xadvance=7 page=0 chnl=0
20 | char id=47 x=205 y=114 width=10 height=22 xoffset=-1 yoffset=5 xadvance=8 page=0 chnl=0
21 | char id=48 x=391 y=454 width=14 height=18 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0
22 | char id=49 x=192 y=436 width=10 height=16 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0
23 | char id=50 x=407 y=336 width=13 height=17 xoffset=1 yoffset=6 xadvance=14 page=0 chnl=0
24 | char id=51 x=391 y=355 width=14 height=18 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0
25 | char id=52 x=391 y=375 width=15 height=17 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0
26 | char id=53 x=407 y=355 width=13 height=17 xoffset=1 yoffset=7 xadvance=15 page=0 chnl=0
27 | char id=54 x=391 y=394 width=14 height=18 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0
28 | char id=55 x=407 y=394 width=13 height=16 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0
29 | char id=56 x=391 y=414 width=15 height=18 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0
30 | char id=57 x=391 y=434 width=14 height=18 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0
31 | char id=58 x=182 y=336 width=6 height=14 xoffset=1 yoffset=10 xadvance=7 page=0 chnl=0
32 | char id=59 x=182 y=316 width=7 height=18 xoffset=0 yoffset=10 xadvance=7 page=0 chnl=0
33 | char id=60 x=391 y=474 width=14 height=13 xoffset=1 yoffset=10 xadvance=15 page=0 chnl=0
34 | char id=61 x=439 y=184 width=14 height=11 xoffset=1 yoffset=11 xadvance=15 page=0 chnl=0
35 | char id=62 x=407 y=321 width=13 height=13 xoffset=1 yoffset=10 xadvance=15 page=0 chnl=0
36 | char id=63 x=205 y=49 width=12 height=17 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0
37 | char id=64 x=391 y=489 width=19 height=20 xoffset=1 yoffset=7 xadvance=21 page=0 chnl=0
38 | char id=65 x=314 y=321 width=16 height=16 xoffset=0 yoffset=7 xadvance=16 page=0 chnl=0
39 | char id=66 x=317 y=73 width=14 height=16 xoffset=1 yoffset=7 xadvance=15 page=0 chnl=0
40 | char id=67 x=317 y=249 width=15 height=18 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0
41 | char id=68 x=317 y=91 width=15 height=16 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0
42 | char id=69 x=318 y=220 width=13 height=16 xoffset=1 yoffset=7 xadvance=14 page=0 chnl=0
43 | char id=70 x=317 y=285 width=13 height=16 xoffset=1 yoffset=7 xadvance=13 page=0 chnl=0
44 | char id=71 x=316 y=385 width=16 height=18 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0
45 | char id=72 x=317 y=303 width=15 height=16 xoffset=1 yoffset=7 xadvance=17 page=0 chnl=0
46 | char id=73 x=174 y=88 width=6 height=16 xoffset=1 yoffset=7 xadvance=8 page=0 chnl=0
47 | char id=74 x=316 y=413 width=13 height=17 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0
48 | char id=75 x=362 y=255 width=15 height=16 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0
49 | char id=76 x=205 y=16 width=12 height=16 xoffset=1 yoffset=7 xadvance=12 page=0 chnl=0
50 | char id=77 x=362 y=273 width=18 height=16 xoffset=1 yoffset=7 xadvance=20 page=0 chnl=0
51 | char id=78 x=362 y=291 width=15 height=16 xoffset=1 yoffset=7 xadvance=17 page=0 chnl=0
52 | char id=79 x=362 y=309 width=16 height=18 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0
53 | char id=80 x=362 y=329 width=14 height=16 xoffset=1 yoffset=7 xadvance=15 page=0 chnl=0
54 | char id=81 x=362 y=347 width=16 height=19 xoffset=0 yoffset=6 xadvance=17 page=0 chnl=0
55 | char id=82 x=362 y=368 width=15 height=16 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0
56 | char id=83 x=362 y=386 width=15 height=18 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0
57 | char id=84 x=362 y=406 width=15 height=16 xoffset=-1 yoffset=7 xadvance=13 page=0 chnl=0
58 | char id=85 x=362 y=424 width=15 height=17 xoffset=1 yoffset=7 xadvance=17 page=0 chnl=0
59 | char id=86 x=362 y=443 width=16 height=16 xoffset=0 yoffset=7 xadvance=16 page=0 chnl=0
60 | char id=87 x=362 y=461 width=22 height=16 xoffset=0 yoffset=7 xadvance=22 page=0 chnl=0
61 | char id=88 x=362 y=479 width=15 height=16 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0
62 | char id=89 x=391 y=143 width=15 height=16 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0
63 | char id=90 x=391 y=161 width=14 height=16 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0
64 | char id=91 x=192 y=464 width=9 height=19 xoffset=1 yoffset=7 xadvance=10 page=0 chnl=0
65 | char id=92 x=205 y=138 width=10 height=22 xoffset=-1 yoffset=5 xadvance=8 page=0 chnl=0
66 | char id=93 x=192 y=485 width=9 height=19 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0
67 | char id=94 x=205 y=162 width=11 height=8 xoffset=1 yoffset=6 xadvance=12 page=0 chnl=0
68 | char id=95 x=79 y=338 width=16 height=4 xoffset=-3 yoffset=24 xadvance=10 page=0 chnl=0
69 | char id=96 x=91 y=133 width=5 height=6 xoffset=3 yoffset=4 xadvance=11 page=0 chnl=0
70 | char id=97 x=317 y=269 width=13 height=13 xoffset=0 yoffset=10 xadvance=14 page=0 chnl=0
71 | char id=98 x=391 y=179 width=14 height=17 xoffset=1 yoffset=6 xadvance=15 page=0 chnl=0
72 | char id=99 x=362 y=497 width=13 height=14 xoffset=0 yoffset=10 xadvance=13 page=0 chnl=0
73 | char id=100 x=391 y=198 width=14 height=17 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0
74 | char id=101 x=407 y=161 width=13 height=14 xoffset=0 yoffset=10 xadvance=14 page=0 chnl=0
75 | char id=102 x=192 y=358 width=10 height=18 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0
76 | char id=103 x=391 y=217 width=14 height=18 xoffset=0 yoffset=10 xadvance=15 page=0 chnl=0
77 | char id=104 x=407 y=179 width=13 height=17 xoffset=1 yoffset=6 xadvance=15 page=0 chnl=0
78 | char id=105 x=182 y=265 width=6 height=18 xoffset=1 yoffset=5 xadvance=7 page=0 chnl=0
79 | char id=106 x=192 y=378 width=9 height=22 xoffset=-2 yoffset=5 xadvance=7 page=0 chnl=0
80 | char id=107 x=407 y=198 width=13 height=17 xoffset=1 yoffset=6 xadvance=15 page=0 chnl=0
81 | char id=108 x=182 y=285 width=5 height=18 xoffset=1 yoffset=5 xadvance=7 page=0 chnl=0
82 | char id=109 x=391 y=237 width=20 height=13 xoffset=1 yoffset=10 xadvance=22 page=0 chnl=0
83 | char id=110 x=407 y=217 width=13 height=13 xoffset=1 yoffset=10 xadvance=15 page=0 chnl=0
84 | char id=111 x=391 y=252 width=14 height=14 xoffset=0 yoffset=10 xadvance=14 page=0 chnl=0
85 | char id=112 x=391 y=268 width=14 height=17 xoffset=1 yoffset=10 xadvance=15 page=0 chnl=0
86 | char id=113 x=391 y=287 width=14 height=17 xoffset=0 yoffset=10 xadvance=15 page=0 chnl=0
87 | char id=114 x=192 y=402 width=10 height=13 xoffset=1 yoffset=10 xadvance=10 page=0 chnl=0
88 | char id=115 x=407 y=252 width=13 height=14 xoffset=0 yoffset=10 xadvance=13 page=0 chnl=0
89 | char id=116 x=192 y=417 width=10 height=17 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0
90 | char id=117 x=407 y=268 width=13 height=13 xoffset=1 yoffset=10 xadvance=15 page=0 chnl=0
91 | char id=118 x=407 y=287 width=13 height=13 xoffset=0 yoffset=10 xadvance=13 page=0 chnl=0
92 | char id=119 x=391 y=306 width=20 height=13 xoffset=0 yoffset=10 xadvance=20 page=0 chnl=0
93 | char id=120 x=391 y=321 width=14 height=13 xoffset=0 yoffset=10 xadvance=14 page=0 chnl=0
94 | char id=121 x=391 y=336 width=14 height=17 xoffset=0 yoffset=10 xadvance=14 page=0 chnl=0
95 | char id=122 x=205 y=34 width=12 height=13 xoffset=0 yoffset=10 xadvance=12 page=0 chnl=0
96 | char id=123 x=205 y=68 width=11 height=21 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0
97 | char id=124 x=182 y=398 width=5 height=22 xoffset=2 yoffset=5 xadvance=9 page=0 chnl=0
98 | char id=125 x=205 y=91 width=11 height=21 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0
99 | char id=126 x=81 y=365 width=13 height=7 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=0
100 | kernings count=0
101 |
--------------------------------------------------------------------------------
/assets/SFCompactRounded-Black-48.fnt:
--------------------------------------------------------------------------------
1 | info face="SFCompactRounded-Black" size=48 bold=0 italic=0 charset="" unicode=1 stretchH=100 smooth=1 aa=2 padding=0,0,0,0 spacing=0,0
2 | common lineHeight=57 base=46 scaleW=1024 scaleH=512 pages=1 packed=0 alphaChnl=0 redChnl=0 greenChnl=0 blueChnl=0
3 | page id=0 file="ultralight.png"
4 | chars count=95
5 | char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0
6 | char id=33 x=192 y=161 width=11 height=34 xoffset=2 yoffset=12 xadvance=15 page=0 chnl=0
7 | char id=34 x=334 y=169 width=20 height=16 xoffset=1 yoffset=14 xadvance=23 page=0 chnl=0
8 | char id=35 x=422 y=80 width=30 height=34 xoffset=0 yoffset=12 xadvance=30 page=0 chnl=0
9 | char id=36 x=391 y=72 width=28 height=39 xoffset=1 yoffset=10 xadvance=30 page=0 chnl=0
10 | char id=37 x=422 y=42 width=34 height=36 xoffset=1 yoffset=12 xadvance=38 page=0 chnl=0
11 | char id=38 x=422 y=126 width=30 height=34 xoffset=1 yoffset=13 xadvance=34 page=0 chnl=0
12 | char id=39 x=192 y=197 width=10 height=16 xoffset=1 yoffset=14 xadvance=12 page=0 chnl=0
13 | char id=40 x=316 y=469 width=13 height=40 xoffset=2 yoffset=13 xadvance=18 page=0 chnl=0
14 | char id=41 x=334 y=222 width=14 height=40 xoffset=2 yoffset=13 xadvance=18 page=0 chnl=0
15 | char id=42 x=316 y=122 width=16 height=18 xoffset=3 yoffset=14 xadvance=22 page=0 chnl=0
16 | char id=43 x=391 y=113 width=28 height=28 xoffset=1 yoffset=18 xadvance=30 page=0 chnl=0
17 | char id=44 x=192 y=228 width=11 height=18 xoffset=0 yoffset=36 xadvance=11 page=0 chnl=0
18 | char id=45 x=316 y=110 width=16 height=10 xoffset=1 yoffset=28 xadvance=19 page=0 chnl=0
19 | char id=46 x=192 y=215 width=11 height=11 xoffset=2 yoffset=36 xadvance=14 page=0 chnl=0
20 | char id=47 x=362 y=145 width=17 height=42 xoffset=-1 yoffset=11 xadvance=16 page=0 chnl=0
21 | char id=48 x=362 y=109 width=27 height=34 xoffset=1 yoffset=13 xadvance=29 page=0 chnl=0
22 | char id=49 x=311 y=350 width=19 height=32 xoffset=0 yoffset=14 xadvance=21 page=0 chnl=0
23 | char id=50 x=334 y=65 width=25 height=33 xoffset=2 yoffset=13 xadvance=28 page=0 chnl=0
24 | char id=51 x=362 y=1 width=27 height=34 xoffset=1 yoffset=13 xadvance=29 page=0 chnl=0
25 | char id=52 x=391 y=1 width=29 height=33 xoffset=0 yoffset=13 xadvance=30 page=0 chnl=0
26 | char id=53 x=334 y=100 width=26 height=33 xoffset=2 yoffset=14 xadvance=29 page=0 chnl=0
27 | char id=54 x=362 y=37 width=27 height=34 xoffset=1 yoffset=13 xadvance=29 page=0 chnl=0
28 | char id=55 x=334 y=135 width=26 height=32 xoffset=0 yoffset=14 xadvance=27 page=0 chnl=0
29 | char id=56 x=391 y=36 width=29 height=34 xoffset=0 yoffset=13 xadvance=30 page=0 chnl=0
30 | char id=57 x=362 y=73 width=27 height=34 xoffset=1 yoffset=13 xadvance=29 page=0 chnl=0
31 | char id=58 x=192 y=285 width=11 height=26 xoffset=2 yoffset=21 xadvance=14 page=0 chnl=0
32 | char id=59 x=192 y=248 width=11 height=35 xoffset=1 yoffset=21 xadvance=14 page=0 chnl=0
33 | char id=60 x=334 y=432 width=25 height=26 xoffset=3 yoffset=20 xadvance=30 page=0 chnl=0
34 | char id=61 x=362 y=233 width=27 height=20 xoffset=1 yoffset=23 xadvance=30 page=0 chnl=0
35 | char id=62 x=334 y=460 width=25 height=26 xoffset=2 yoffset=20 xadvance=30 page=0 chnl=0
36 | char id=63 x=334 y=187 width=24 height=33 xoffset=0 yoffset=13 xadvance=24 page=0 chnl=0
37 | char id=64 x=422 y=1 width=37 height=39 xoffset=2 yoffset=14 xadvance=42 page=0 chnl=0
38 | char id=65 x=219 y=1 width=31 height=32 xoffset=0 yoffset=14 xadvance=32 page=0 chnl=0
39 | char id=66 x=219 y=35 width=28 height=32 xoffset=2 yoffset=14 xadvance=31 page=0 chnl=0
40 | char id=67 x=219 y=69 width=28 height=34 xoffset=1 yoffset=13 xadvance=31 page=0 chnl=0
41 | char id=68 x=219 y=105 width=29 height=32 xoffset=2 yoffset=14 xadvance=32 page=0 chnl=0
42 | char id=69 x=219 y=139 width=24 height=32 xoffset=2 yoffset=14 xadvance=28 page=0 chnl=0
43 | char id=70 x=219 y=173 width=24 height=32 xoffset=2 yoffset=14 xadvance=26 page=0 chnl=0
44 | char id=71 x=219 y=207 width=29 height=34 xoffset=1 yoffset=13 xadvance=32 page=0 chnl=0
45 | char id=72 x=219 y=243 width=30 height=32 xoffset=2 yoffset=14 xadvance=34 page=0 chnl=0
46 | char id=73 x=192 y=52 width=11 height=32 xoffset=2 yoffset=14 xadvance=15 page=0 chnl=0
47 | char id=74 x=219 y=277 width=25 height=33 xoffset=1 yoffset=14 xadvance=29 page=0 chnl=0
48 | char id=75 x=219 y=312 width=29 height=32 xoffset=2 yoffset=14 xadvance=32 page=0 chnl=0
49 | char id=76 x=219 y=346 width=23 height=32 xoffset=2 yoffset=14 xadvance=25 page=0 chnl=0
50 | char id=77 x=252 y=1 width=35 height=32 xoffset=2 yoffset=14 xadvance=40 page=0 chnl=0
51 | char id=78 x=219 y=380 width=28 height=32 xoffset=2 yoffset=14 xadvance=33 page=0 chnl=0
52 | char id=79 x=219 y=414 width=30 height=34 xoffset=1 yoffset=13 xadvance=33 page=0 chnl=0
53 | char id=80 x=219 y=450 width=27 height=32 xoffset=2 yoffset=14 xadvance=30 page=0 chnl=0
54 | char id=81 x=252 y=35 width=30 height=37 xoffset=1 yoffset=13 xadvance=33 page=0 chnl=0
55 | char id=82 x=252 y=74 width=28 height=32 xoffset=2 yoffset=14 xadvance=31 page=0 chnl=0
56 | char id=83 x=252 y=108 width=28 height=34 xoffset=1 yoffset=13 xadvance=30 page=0 chnl=0
57 | char id=84 x=252 y=144 width=28 height=32 xoffset=-1 yoffset=14 xadvance=26 page=0 chnl=0
58 | char id=85 x=252 y=178 width=29 height=33 xoffset=2 yoffset=14 xadvance=33 page=0 chnl=0
59 | char id=86 x=252 y=213 width=30 height=32 xoffset=0 yoffset=14 xadvance=31 page=0 chnl=0
60 | char id=87 x=289 y=1 width=43 height=32 xoffset=0 yoffset=14 xadvance=44 page=0 chnl=0
61 | char id=88 x=252 y=247 width=29 height=32 xoffset=0 yoffset=14 xadvance=30 page=0 chnl=0
62 | char id=89 x=252 y=281 width=29 height=32 xoffset=0 yoffset=14 xadvance=29 page=0 chnl=0
63 | char id=90 x=252 y=315 width=27 height=32 xoffset=1 yoffset=14 xadvance=29 page=0 chnl=0
64 | char id=91 x=334 y=264 width=17 height=38 xoffset=2 yoffset=14 xadvance=19 page=0 chnl=0
65 | char id=92 x=362 y=189 width=17 height=42 xoffset=-1 yoffset=11 xadvance=16 page=0 chnl=0
66 | char id=93 x=334 y=304 width=17 height=38 xoffset=0 yoffset=14 xadvance=19 page=0 chnl=0
67 | char id=94 x=334 y=488 width=20 height=15 xoffset=2 yoffset=13 xadvance=25 page=0 chnl=0
68 | char id=95 x=422 y=116 width=30 height=8 xoffset=-5 yoffset=48 xadvance=20 page=0 chnl=0
69 | char id=96 x=182 y=253 width=8 height=10 xoffset=7 yoffset=9 xadvance=22 page=0 chnl=0
70 | char id=97 x=219 y=484 width=24 height=26 xoffset=1 yoffset=20 xadvance=27 page=0 chnl=0
71 | char id=98 x=252 y=349 width=26 height=34 xoffset=2 yoffset=12 xadvance=30 page=0 chnl=0
72 | char id=99 x=252 y=385 width=24 height=27 xoffset=1 yoffset=20 xadvance=26 page=0 chnl=0
73 | char id=100 x=252 y=414 width=26 height=34 xoffset=1 yoffset=12 xadvance=30 page=0 chnl=0
74 | char id=101 x=252 y=450 width=25 height=27 xoffset=1 yoffset=20 xadvance=27 page=0 chnl=0
75 | char id=102 x=289 y=35 width=20 height=36 xoffset=0 yoffset=10 xadvance=20 page=0 chnl=0
76 | char id=103 x=289 y=73 width=26 height=35 xoffset=1 yoffset=20 xadvance=29 page=0 chnl=0
77 | char id=104 x=289 y=110 width=25 height=34 xoffset=2 yoffset=12 xadvance=30 page=0 chnl=0
78 | char id=105 x=192 y=86 width=10 height=36 xoffset=2 yoffset=10 xadvance=14 page=0 chnl=0
79 | char id=106 x=289 y=146 width=15 height=44 xoffset=-3 yoffset=10 xadvance=14 page=0 chnl=0
80 | char id=107 x=306 y=146 width=25 height=34 xoffset=2 yoffset=12 xadvance=29 page=0 chnl=0
81 | char id=108 x=192 y=124 width=10 height=35 xoffset=2 yoffset=11 xadvance=14 page=0 chnl=0
82 | char id=109 x=289 y=192 width=39 height=26 xoffset=2 yoffset=20 xadvance=43 page=0 chnl=0
83 | char id=110 x=252 y=479 width=25 height=26 xoffset=2 yoffset=20 xadvance=29 page=0 chnl=0
84 | char id=111 x=289 y=220 width=27 height=27 xoffset=0 yoffset=20 xadvance=28 page=0 chnl=0
85 | char id=112 x=289 y=249 width=26 height=34 xoffset=2 yoffset=20 xadvance=30 page=0 chnl=0
86 | char id=113 x=289 y=285 width=26 height=34 xoffset=1 yoffset=20 xadvance=30 page=0 chnl=0
87 | char id=114 x=311 y=35 width=19 height=26 xoffset=2 yoffset=20 xadvance=21 page=0 chnl=0
88 | char id=115 x=289 y=321 width=23 height=27 xoffset=1 yoffset=20 xadvance=26 page=0 chnl=0
89 | char id=116 x=289 y=350 width=20 height=33 xoffset=0 yoffset=14 xadvance=20 page=0 chnl=0
90 | char id=117 x=289 y=385 width=25 height=26 xoffset=2 yoffset=20 xadvance=29 page=0 chnl=0
91 | char id=118 x=289 y=413 width=25 height=26 xoffset=1 yoffset=20 xadvance=27 page=0 chnl=0
92 | char id=119 x=289 y=441 width=39 height=26 xoffset=0 yoffset=20 xadvance=40 page=0 chnl=0
93 | char id=120 x=289 y=469 width=25 height=26 xoffset=1 yoffset=20 xadvance=28 page=0 chnl=0
94 | char id=121 x=334 y=1 width=26 height=34 xoffset=0 yoffset=20 xadvance=27 page=0 chnl=0
95 | char id=122 x=334 y=37 width=23 height=26 xoffset=1 yoffset=20 xadvance=25 page=0 chnl=0
96 | char id=123 x=334 y=344 width=21 height=42 xoffset=0 yoffset=12 xadvance=21 page=0 chnl=0
97 | char id=124 x=192 y=313 width=10 height=43 xoffset=4 yoffset=11 xadvance=18 page=0 chnl=0
98 | char id=125 x=334 y=388 width=21 height=42 xoffset=0 yoffset=12 xadvance=21 page=0 chnl=0
99 | char id=126 x=289 y=497 width=24 height=14 xoffset=1 yoffset=22 xadvance=26 page=0 chnl=0
100 | kernings count=0
101 |
--------------------------------------------------------------------------------
/assets/flappy.fnt:
--------------------------------------------------------------------------------
1 | info face=flappy size=32 bold=0 italic=0 charset= unicode= stretchH=100 smooth=1 aa=1 padding=3,3,3,3 spacing=0,0 outline=0
2 | common lineHeight=36 base=25 scaleW=512 scaleH=512 pages=1 packed=0
3 | page id=0 file="flappy.png"
4 | chars count=10
5 | char id=48 x=494 y=59 width=14 height=20 xoffset=0 yoffset=0 xadvance=14 page=0 chnl=15
6 | char id=49 x=135 y=454 width=12 height=20 xoffset=2 yoffset=0 xadvance=14 page=0 chnl=15
7 | char id=50 x=291 y=159 width=14 height=20 xoffset=0 yoffset=0 xadvance=14 page=0 chnl=15
8 | char id=51 x=305 y=159 width=14 height=20 xoffset=0 yoffset=0 xadvance=14 page=0 chnl=15
9 | char id=52 x=319 y=159 width=14 height=20 xoffset=0 yoffset=0 xadvance=14 page=0 chnl=15
10 | char id=53 x=333 y=159 width=14 height=20 xoffset=0 yoffset=0 xadvance=14 page=0 chnl=15
11 | char id=54 x=291 y=183 width=14 height=20 xoffset=0 yoffset=0 xadvance=14 page=0 chnl=15
12 | char id=55 x=305 y=183 width=14 height=20 xoffset=0 yoffset=0 xadvance=14 page=0 chnl=15
13 | char id=56 x=319 y=183 width=14 height=20 xoffset=0 yoffset=0 xadvance=14 page=0 chnl=15
14 | char id=57 x=333 y=183 width=14 height=20 xoffset=0 yoffset=0 xadvance=14 page=0 chnl=15
15 | kernings count=0
16 |
--------------------------------------------------------------------------------
/assets/font.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/assets/font.png
--------------------------------------------------------------------------------
/assets/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/assets/icon.png
--------------------------------------------------------------------------------
/assets/icon/app-icon-iTunesArtwork.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/assets/icon/app-icon-iTunesArtwork.png
--------------------------------------------------------------------------------
/assets/icon/app-icon@120x120.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/assets/icon/app-icon@120x120.png
--------------------------------------------------------------------------------
/assets/icon/app-icon@152x152.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/assets/icon/app-icon@152x152.png
--------------------------------------------------------------------------------
/assets/icon/app-icon@167x167.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/assets/icon/app-icon@167x167.png
--------------------------------------------------------------------------------
/assets/icon/app-icon@180x180.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/assets/icon/app-icon@180x180.png
--------------------------------------------------------------------------------
/assets/icon/app-icon@22x22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/assets/icon/app-icon@22x22.png
--------------------------------------------------------------------------------
/assets/icon/app-icon@25x25.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/assets/icon/app-icon@25x25.png
--------------------------------------------------------------------------------
/assets/icon/app-icon@29x29.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/assets/icon/app-icon@29x29.png
--------------------------------------------------------------------------------
/assets/icon/app-icon@44x44.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/assets/icon/app-icon@44x44.png
--------------------------------------------------------------------------------
/assets/icon/app-icon@50x50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/assets/icon/app-icon@50x50.png
--------------------------------------------------------------------------------
/assets/icon/app-icon@58x58.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/assets/icon/app-icon@58x58.png
--------------------------------------------------------------------------------
/assets/icon/app-icon@60x60.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/assets/icon/app-icon@60x60.png
--------------------------------------------------------------------------------
/assets/icon/app-icon@66x66.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/assets/icon/app-icon@66x66.png
--------------------------------------------------------------------------------
/assets/icon/app-icon@75x75.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/assets/icon/app-icon@75x75.png
--------------------------------------------------------------------------------
/assets/icon/app-icon@76x76.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/assets/icon/app-icon@76x76.png
--------------------------------------------------------------------------------
/assets/icon/app-icon@80x80.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/assets/icon/app-icon@80x80.png
--------------------------------------------------------------------------------
/assets/icon/app-icon@87x87.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/assets/icon/app-icon@87x87.png
--------------------------------------------------------------------------------
/assets/icon_1024.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/assets/icon_1024.png
--------------------------------------------------------------------------------
/assets/icon_120.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/assets/icon_120.png
--------------------------------------------------------------------------------
/assets/icon_180.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/assets/icon_180.png
--------------------------------------------------------------------------------
/assets/icon_40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/assets/icon_40.png
--------------------------------------------------------------------------------
/assets/icon_60.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/assets/icon_60.png
--------------------------------------------------------------------------------
/assets/icon_80.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/assets/icon_80.png
--------------------------------------------------------------------------------
/assets/icon_87.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/assets/icon_87.png
--------------------------------------------------------------------------------
/assets/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/assets/logo.png
--------------------------------------------------------------------------------
/assets/ultralight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/assets/ultralight.png
--------------------------------------------------------------------------------
/bsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "purple-maze",
3 | "bsc-flags": "-w -27 -g",
4 | "warnings": {
5 | "number": "-40+6+7-26-27+32..39-28-44+45",
6 | "error": "+8",
7 | },
8 | "sources": [
9 | "src",
10 | ],
11 | "bs-dependencies": ["@jaredly/reprocessing", "maze.re"],
12 | "package-specs": ["commonjs", "es6"],
13 | "entries": [{
14 | "backend": "bytecode",
15 | "main-module": "Indexhot"
16 | },{
17 | "backend": "bytecode",
18 | "main-module": "Dev"
19 | },{
20 | "backend": "js",
21 | "main-module": "Web"
22 | },{
23 | "backend": "native",
24 | "main-module": "Prod"
25 | },{
26 | "backend": "native",
27 | "main-module": "Dev"
28 | }],
29 | "refmt": 3,
30 | "icon": "./icons/icon.png",
31 | "appName": "PurpleMaze",
32 | "iosPathName": "App",
33 | "androidPackage": "com.jaredforsyth.purplemaze",
34 | }
35 |
--------------------------------------------------------------------------------
/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/icon.png
--------------------------------------------------------------------------------
/icon.sketch:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/icon.sketch
--------------------------------------------------------------------------------
/icons/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/icons/icon.png
--------------------------------------------------------------------------------
/ios/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/ios/App.xcodeproj/project.xcworkspace/xcshareddata/OCamlTest.xcscmblueprint:
--------------------------------------------------------------------------------
1 | {
2 | "DVTSourceControlWorkspaceBlueprintPrimaryRemoteRepositoryKey" : "8E05851A0CC76F451431915BBC433AA850D431F2",
3 | "DVTSourceControlWorkspaceBlueprintWorkingCopyRepositoryLocationsKey" : {
4 |
5 | },
6 | "DVTSourceControlWorkspaceBlueprintWorkingCopyStatesKey" : {
7 | "61BBD15622E96048305185FEA7CDC0BB1B536343" : 9223372036854775807,
8 | "8E05851A0CC76F451431915BBC433AA850D431F2" : 9223372036854775807
9 | },
10 | "DVTSourceControlWorkspaceBlueprintIdentifierKey" : "7A3F09D0-3E9C-4C79-B357-E8902CA475E9",
11 | "DVTSourceControlWorkspaceBlueprintWorkingCopyPathsKey" : {
12 | "61BBD15622E96048305185FEA7CDC0BB1B536343" : "reasongl-ios\/bin\/ocaml-iPhoneSimulator-64\/",
13 | "8E05851A0CC76F451431915BBC433AA850D431F2" : "reasongl-ios\/"
14 | },
15 | "DVTSourceControlWorkspaceBlueprintNameKey" : "OCamlTest",
16 | "DVTSourceControlWorkspaceBlueprintVersion" : 204,
17 | "DVTSourceControlWorkspaceBlueprintRelativePathToProjectKey" : "OCamlTest\/OCamlTest.xcodeproj",
18 | "DVTSourceControlWorkspaceBlueprintRemoteRepositoriesKey" : [
19 | {
20 | "DVTSourceControlWorkspaceBlueprintRemoteRepositoryURLKey" : "https:\/\/github.com\/whitequark\/ocaml.git",
21 | "DVTSourceControlWorkspaceBlueprintRemoteRepositorySystemKey" : "com.apple.dt.Xcode.sourcecontrol.Git",
22 | "DVTSourceControlWorkspaceBlueprintRemoteRepositoryIdentifierKey" : "61BBD15622E96048305185FEA7CDC0BB1B536343"
23 | },
24 | {
25 | "DVTSourceControlWorkspaceBlueprintRemoteRepositoryURLKey" : "https:\/\/github.com\/bsansouci\/gobi.git",
26 | "DVTSourceControlWorkspaceBlueprintRemoteRepositorySystemKey" : "com.apple.dt.Xcode.sourcecontrol.Git",
27 | "DVTSourceControlWorkspaceBlueprintRemoteRepositoryIdentifierKey" : "8E05851A0CC76F451431915BBC433AA850D431F2"
28 | }
29 | ]
30 | }
--------------------------------------------------------------------------------
/ios/App/AppDelegate.h:
--------------------------------------------------------------------------------
1 | //
2 | // AppDelegate.h
3 | // OCamlTest
4 | //
5 | // Created by Wojciech Czekalski on 22.01.2017.
6 | // Copyright © 2017 wokalski. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @interface AppDelegate : UIResponder
12 |
13 | @property (strong, nonatomic) UIWindow *window;
14 |
15 |
16 | @end
17 |
18 |
--------------------------------------------------------------------------------
/ios/App/AppDelegate.m:
--------------------------------------------------------------------------------
1 | //
2 | // AppDelegate.m
3 | // OCamlTest
4 | //
5 | // Created by Wojciech Czekalski on 22.01.2017.
6 | // Copyright © 2017 wokalski. All rights reserved.
7 | //
8 |
9 | #import "AppDelegate.h"
10 | #import "Reprocessing.h"
11 |
12 | @interface AppDelegate ()
13 |
14 | @end
15 |
16 | @implementation AppDelegate
17 |
18 |
19 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
20 | // Override point for customization after application launch.
21 | self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
22 | UIViewController *viewController = [[ReprocessingViewController alloc] init];
23 | self.window.rootViewController = viewController;
24 | [self.window makeKeyAndVisible];
25 | return YES;
26 | }
27 |
28 |
29 | - (void)applicationWillResignActive:(UIApplication *)application {
30 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
31 | // Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game.
32 | }
33 |
34 |
35 | - (void)applicationDidEnterBackground:(UIApplication *)application {
36 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
37 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
38 | }
39 |
40 |
41 | - (void)applicationWillEnterForeground:(UIApplication *)application {
42 | // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background.
43 | }
44 |
45 |
46 | - (void)applicationDidBecomeActive:(UIApplication *)application {
47 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
48 | }
49 |
50 |
51 | - (void)applicationWillTerminate:(UIApplication *)application {
52 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
53 | }
54 |
55 |
56 | @end
57 |
--------------------------------------------------------------------------------
/ios/App/Assets.xcassets/AppIcon.appiconset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "size" : "20x20",
5 | "idiom" : "iphone",
6 | "filename" : "icon_120-6.png",
7 | "scale" : "2x"
8 | },
9 | {
10 | "size" : "20x20",
11 | "idiom" : "iphone",
12 | "filename" : "icon_120-5.png",
13 | "scale" : "3x"
14 | },
15 | {
16 | "size" : "29x29",
17 | "idiom" : "iphone",
18 | "filename" : "icon_120-3.png",
19 | "scale" : "2x"
20 | },
21 | {
22 | "size" : "29x29",
23 | "idiom" : "iphone",
24 | "filename" : "icon_120-4.png",
25 | "scale" : "3x"
26 | },
27 | {
28 | "size" : "40x40",
29 | "idiom" : "iphone",
30 | "filename" : "icon_120-2.png",
31 | "scale" : "2x"
32 | },
33 | {
34 | "size" : "40x40",
35 | "idiom" : "iphone",
36 | "filename" : "icon_120-1.png",
37 | "scale" : "3x"
38 | },
39 | {
40 | "size" : "60x60",
41 | "idiom" : "iphone",
42 | "filename" : "icon_120.png",
43 | "scale" : "2x"
44 | },
45 | {
46 | "size" : "60x60",
47 | "idiom" : "iphone",
48 | "filename" : "icon_180.png",
49 | "scale" : "3x"
50 | },
51 | {
52 | "size" : "1024x1024",
53 | "idiom" : "ios-marketing",
54 | "filename" : "icon.png",
55 | "scale" : "1x"
56 | }
57 | ],
58 | "info" : {
59 | "version" : 1,
60 | "author" : "xcode"
61 | }
62 | }
--------------------------------------------------------------------------------
/ios/App/Assets.xcassets/AppIcon.appiconset/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/ios/App/Assets.xcassets/AppIcon.appiconset/icon.png
--------------------------------------------------------------------------------
/ios/App/Assets.xcassets/AppIcon.appiconset/icon_120-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/ios/App/Assets.xcassets/AppIcon.appiconset/icon_120-1.png
--------------------------------------------------------------------------------
/ios/App/Assets.xcassets/AppIcon.appiconset/icon_120-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/ios/App/Assets.xcassets/AppIcon.appiconset/icon_120-2.png
--------------------------------------------------------------------------------
/ios/App/Assets.xcassets/AppIcon.appiconset/icon_120-3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/ios/App/Assets.xcassets/AppIcon.appiconset/icon_120-3.png
--------------------------------------------------------------------------------
/ios/App/Assets.xcassets/AppIcon.appiconset/icon_120-4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/ios/App/Assets.xcassets/AppIcon.appiconset/icon_120-4.png
--------------------------------------------------------------------------------
/ios/App/Assets.xcassets/AppIcon.appiconset/icon_120-5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/ios/App/Assets.xcassets/AppIcon.appiconset/icon_120-5.png
--------------------------------------------------------------------------------
/ios/App/Assets.xcassets/AppIcon.appiconset/icon_120-6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/ios/App/Assets.xcassets/AppIcon.appiconset/icon_120-6.png
--------------------------------------------------------------------------------
/ios/App/Assets.xcassets/AppIcon.appiconset/icon_120.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/ios/App/Assets.xcassets/AppIcon.appiconset/icon_120.png
--------------------------------------------------------------------------------
/ios/App/Assets.xcassets/AppIcon.appiconset/icon_180.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/ios/App/Assets.xcassets/AppIcon.appiconset/icon_180.png
--------------------------------------------------------------------------------
/ios/App/Base.lproj/Main.storyboard:
--------------------------------------------------------------------------------
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 |
--------------------------------------------------------------------------------
/ios/App/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleDisplayName
8 | ReprocessingExample
9 | CFBundleExecutable
10 | $(EXECUTABLE_NAME)
11 | CFBundleIdentifier
12 | $(PRODUCT_BUNDLE_IDENTIFIER)
13 | CFBundleInfoDictionaryVersion
14 | 6.0
15 | CFBundleName
16 | $(PRODUCT_NAME)
17 | CFBundlePackageType
18 | APPL
19 | CFBundleShortVersionString
20 | 1.0
21 | CFBundleVersion
22 | 1
23 | LSRequiresIPhoneOS
24 |
25 | NSHumanReadableCopyright
26 | Copyright © 2017 Jared Forsyth
27 | UILaunchStoryboardName
28 | LaunchScreen
29 | UIRequiredDeviceCapabilities
30 |
31 | armv7
32 |
33 | UIStatusBarHidden
34 |
35 | UISupportedInterfaceOrientations
36 |
37 | UIInterfaceOrientationPortrait
38 |
39 |
40 |
41 |
--------------------------------------------------------------------------------
/ios/App/LaunchScreen.storyboard:
--------------------------------------------------------------------------------
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 |
--------------------------------------------------------------------------------
/ios/App/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/ios/App/background.png
--------------------------------------------------------------------------------
/ios/App/main.m:
--------------------------------------------------------------------------------
1 | //
2 | // main.m
3 | // OCamlTest
4 | //
5 | // Created by Wojciech Czekalski on 22.01.2017.
6 | // Copyright © 2017 wokalski. All rights reserved.
7 | //
8 |
9 | #import
10 | #import "AppDelegate.h"
11 | #import "callback.h"
12 |
13 | int main(int argc, char * argv[]) {
14 | @autoreleasepool {
15 | // Initialize OCaml.
16 | caml_main(argv);
17 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/ios/libreasongl.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/ios/libreasongl.a
--------------------------------------------------------------------------------
/ios/reprocessing:
--------------------------------------------------------------------------------
1 | ../node_modules/@jaredly/reasongl-ios/ios
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "purplemaze",
3 | "version": "0.0.1",
4 | "scripts": {
5 | "start": "rsb native:hot",
6 | "native": "rsb native",
7 | "bundle": "rsb native:bundle",
8 | "all": "rsb all",
9 | "android": "rsb android",
10 | "android:run": "rsb android:run",
11 | "android:hot": "rsb android:hot",
12 | "ios": "rsb ios",
13 | "ios:sim": "rsb ios:sim",
14 | "ios:device": "rsb ios:device",
15 | "js": "rsb js",
16 | "serve": "rsb js:serve",
17 | "clean": "rm -rf _build && bsb -clean-world",
18 | "publish": "npm run js && cd public && surge . -d purplemaze.surge.sh",
19 | "test": "bsb -make-world -backend bytecode && ./lib/bs/bytecode/test.byte"
20 | },
21 | "keywords": [
22 | "BuckleScript"
23 | ],
24 | "author": "",
25 | "license": "",
26 | "devDependencies": {
27 | "bs-platform": "bsansouci/bsb-native#fast",
28 | "reprocessing-scripts": "1.3.4"
29 | },
30 | "dependencies": {
31 | "@jaredly/reprocessing": "1.1.4",
32 | "maze.re": "0.0.1"
33 | }
34 | }
35 |
--------------------------------------------------------------------------------
/public/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | PurpleMaze - Jared Forsyth
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/screencast.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jaredly/purple-maze/64aa8ff10537ed3292ecd3374cd5f3e39d9e74de/screencast.gif
--------------------------------------------------------------------------------
/src/FreePlay.re:
--------------------------------------------------------------------------------
1 |
2 | type t = (int, int, Play_types.status);
3 |
4 | let init = (size, context, env) => {
5 | (size, 0, Play_step.start(size, env))
6 | };
7 |
8 | let step = ((size, num, status), context, env) => {
9 | if (Reprocessing.Env.keyPressed(Reprocessing.Events.Escape, env)) {
10 | init(size, context, env)
11 | } else {
12 | switch (Play_step.step(status, context, env)) {
13 | | `Continue(status) => (size, num, status)
14 | | `Won(prevState) => {
15 | let size = num >= 4 ? size + 1 : size;
16 | (size, num >= 4 ? 0 : num + 1, Play_step.continue(prevState, size, env))
17 | }
18 | }
19 | }
20 | };
21 |
22 | let draw = ((size, num, status), context, env) => {
23 | Play_draw.draw(status, context, env);
24 |
25 | Reprocessing.Draw.tint(Play_draw.textColor, env);
26 | Reprocessing.Draw.text(~font=context.textFont, ~body=Printf.sprintf("%d.%d", size, num + 1), ~pos=(Reprocessing.Env.width(env) - 50, 10), env);
27 |
28 | Reprocessing.Draw.text(~font=context.smallFont, ~body="PurpleMaze - by Jared Forsyth", ~pos=(10, int_of_float(context.height) - 60), env);
29 | Reprocessing.Draw.text(~font=context.smallFont, ~body="Made with ReasonML and Reprocessing", ~pos=(10, int_of_float(context.height) - 30), env);
30 | Reprocessing.Draw.noTint(env);
31 | };
--------------------------------------------------------------------------------
/src/HslToRgb.re:
--------------------------------------------------------------------------------
1 |
2 | let hslToRgb = (hue, saturation, lightness) => {
3 | /* based on algorithm from http://en.wikipedia.org/wiki/HSL_and_HSV#Converting_to_RGB */
4 | let chroma = (1. -. abs_float((2. *. lightness) -. 1.)) *. saturation;
5 | let huePrime = hue / 60;
6 | let secondComponent = chroma *. (1. -. abs_float(float_of_int(huePrime mod 2) -. 1.));
7 |
8 | /* huePrime = floor(huePrime); */
9 | let (red, green, blue) =
10 | switch huePrime {
11 | | 0 => (chroma, secondComponent, 0.)
12 | | 1 => (secondComponent, chroma, 0.)
13 | | 2 => (0., chroma, secondComponent)
14 | | 3 => (0., secondComponent, chroma)
15 | | 4 => (secondComponent, 0., chroma)
16 | | 5 => (chroma, 0., secondComponent)
17 | | _ => failwith("Invalid hue component")
18 | };
19 |
20 | let l = lightness -. (chroma /. 2.);
21 | let (red, green, blue) = (red +. l, green +. l, blue +. l);
22 |
23 | (int_of_float(red *. 255.), int_of_float(green *. 255.), int_of_float(blue *. 255.))
24 | };
25 |
26 | let hsla = (~h, ~s, ~l, ~a) => {
27 | let (r, g, b) = hslToRgb(h, s, l);
28 | Reprocessing.Utils.color(~r, ~g, ~b, ~a)
29 | };
--------------------------------------------------------------------------------
/src/Main.re:
--------------------------------------------------------------------------------
1 |
2 | Printexc.record_backtrace(true);
3 |
4 | let getEnv = name => try { Some(Sys.getenv(name)) } { | Not_found => None };
5 |
6 | let (/+) = Filename.concat;
7 | let setup = (assetDir, env) => {
8 | if (!Shared.isPhone) {
9 | Reprocessing.Env.resizeable(false, env);
10 | };
11 |
12 | let size = if (!Shared.isPhone) {
13 | if (Reprocessing.Env.maxWidth(env) < 800 && Reprocessing.Env.maxHeight(env) < 800) {
14 | /* Mobile web perf is not too hot :( turning off round line caps makes it a bit better */
15 | Reprocessing.Draw.strokeCap(Reprocessing_Common.Project, env);
16 | Reprocessing.Env.size(~width=Reprocessing.Env.maxWidth(env), ~height=Reprocessing.Env.maxHeight(env), env);
17 | 5
18 | } else {
19 | Reprocessing.Env.size(~width=800, ~height=800, env);
20 | 6
21 | };
22 | /* } else if (Shared.fakePhone) {
23 | switch (getEnv("TABLET")) {
24 | | Some("7") => Reprocessing.Env.size(~width=600, ~height=1024, env)
25 | | Some("10") => Reprocessing.Env.size(~width=800, ~height=1280, env)
26 | | Some("ios") => Reprocessing.Env.size(~width=1242/4 + 1, ~height=2208/4, env)
27 | | Some("iostab") => Reprocessing.Env.size(~width=2048/4 + 1, ~height=2732/4 + 1, env)
28 | | Some(_)
29 | | None => Reprocessing.Env.size(~width=340, ~height=640, env)
30 | } */
31 | } else {
32 | /* Reprocessing.Draw.strokeCap(Reprocessing_Common.Project, env); */
33 | 5
34 | };
35 |
36 | /* Random.init(100); */
37 | let height = Reprocessing.Env.height(env) |> float_of_int;
38 | let width = Reprocessing.Env.width(env) |> float_of_int;
39 |
40 | /** This size pegs my cpu drawing the walls */
41 | /* let size = 17; */
42 |
43 | /* let size = 13; */
44 | /* let size = 5; */
45 | /* let size = 3; */
46 |
47 | let context = {
48 | height,
49 | width,
50 | Shared.titleFont: Reprocessing.Draw.loadFont( ~filename=assetDir /+ "Orbitron-Black-48.fnt", ~isPixel=false, env),
51 | smallTitleFont: Reprocessing.Draw.loadFont( ~filename=assetDir /+ "Orbitron-Regular-24.fnt", ~isPixel=false, env),
52 | boldTextFont: Reprocessing.Draw.loadFont( ~filename=assetDir /+ "Orbitron-Black-24.fnt", ~isPixel=false, env),
53 | textFont: Reprocessing.Draw.loadFont( ~filename=assetDir /+ "Orbitron-Regular-24.fnt", ~isPixel=false, env),
54 | smallFont: Reprocessing.Draw.loadFont( ~filename=assetDir /+ "Orbitron-Regular-16.fnt", ~isPixel=false, env),
55 | };
56 |
57 | let gameState = FreePlay.init(size, context, env);
58 |
59 | {
60 | Shared.screenState: gameState,
61 | context
62 | }
63 | };
64 |
65 | let draw = ({Shared.screenState, context}, env) => {
66 | open Shared;
67 | let screenState = FreePlay.step(screenState, context, env);
68 | FreePlay.draw(screenState, context, env);
69 | {screenState, context}
70 | };
71 |
72 | let run = (assetDir, _) => Reprocessing.run(
73 | ~setup=setup(assetDir),
74 | ~title="PurpleMaze",
75 | ~draw,
76 | ()
77 | );
78 |
79 | let noop = () => {
80 | print_endline("noop");
81 | };
--------------------------------------------------------------------------------
/src/MyQueue.re:
--------------------------------------------------------------------------------
1 | /** TODO this should move to belt or somewhere */
2 | type t('a) = ((list('a), list('a)));
3 | let empty = ([], []);
4 | let isEmpty = x => x == empty;
5 | let add = (x, (front, back)) => {
6 | ([x, ...front], back);
7 | };
8 | let create = x => add(x, empty);
9 | let rec take = (queue) =>
10 | switch queue {
11 | | (front, [x]) => Some((x, ([], List.rev(front))))
12 | | (front, [x, ...back]) => Some((x, (front, back)))
13 | | ([], []) => None
14 | | (front, []) => take(([], List.rev(front)))
15 | };
16 | let peek = ((front, back)) => {
17 | switch back {
18 | | [x, ...rest] => Some(x)
19 | | [] => {
20 | let l = List.length(front);
21 | if (l > 0) {
22 | Some(List.nth(front, l - 1))
23 | } else {
24 | None
25 | }
26 | }
27 | }
28 | };
29 | let dump = ((front, back)) => front @ back;
30 |
--------------------------------------------------------------------------------
/src/MyUtils.re:
--------------------------------------------------------------------------------
1 | type pos = (float, float);
2 |
3 | let rectCollide = ((x, y), ((a, b), (w, h))) => x >= a && x <= a + w && y >= b && y <= b + h;
4 |
5 | let flDiv = (a, b) => float_of_int(a) /. float_of_int(b);
6 |
7 | type vec = {
8 | mag: float,
9 | theta: float
10 | };
11 |
12 | /* let range = (num) => {
13 | Array.make(num, 0)
14 | |> Array.to_list
15 | |> List.mapi((i, _) => i)
16 | }; */
17 |
18 | /** current, max */
19 | type counter = (float, float);
20 |
21 | type counteri = (int, int);
22 |
23 | let counter = (num) => (0., num);
24 |
25 | let v0 = {mag: 0., theta: 0.};
26 |
27 | let dx = ({theta, mag}) => cos(theta) *. mag;
28 |
29 | let dy = ({theta, mag}) => sin(theta) *. mag;
30 |
31 | let vecToPos = (vec) => (dx(vec), dy(vec));
32 |
33 | let vecFromPos = ((dx, dy)) => {mag: sqrt(dx *. dx +. dy *. dy), theta: atan2(dy, dx)};
34 |
35 | let dist = ((dx, dy)) => sqrt(dx *. dx +. dy *. dy);
36 |
37 | let thetaToward = ((x0, y0), (x1, y1)) => atan2(y1 -. y0, x1 -. x0);
38 |
39 | let posAdd = ((x0, y0), (x1, y1)) => (x0 +. x1, y0 +. y1);
40 |
41 | let posSub = ((x0, y0), (x1, y1)) => (x0 -. x1, y0 -. y1);
42 |
43 | let vecAdd = (v1, v2) => vecFromPos(posAdd(vecToPos(v1), vecToPos(v2)));
44 |
45 | let vecToward = (p1, p2) => vecFromPos(posSub(p2, p1));
46 |
47 | let scaleVec = ({mag, theta}, scale) => {mag: mag *. scale, theta};
48 |
49 | let scalePos = ((x, y), scale) => (x *. scale, y *. scale);
50 |
51 | let range = (num) => {
52 | let rec loop = (num, collect) => num <= 0 ? collect : loop(num - 1, [num - 1, ...collect]);
53 | loop(num, [])
54 | };
55 |
56 | let withRange = (num, fn) => {
57 | let rec loop = i => num <= 0 ? [] : [fn(num - 1), ...loop(num - 1)];
58 | loop(num);
59 | };
60 |
61 | let withAlpha = ({Reprocessing_Common.r, g, b, a}, alpha) => {
62 | Reprocessing_Common.r,
63 | g,
64 | b,
65 | a: a *. alpha
66 | };
67 |
68 | let collides = (p1, p2, d) => dist(posSub(p1, p2)) <= d;
69 |
70 | let increment = (env) => Reprocessing_Env.deltaTime(env) *. 1000. /. 16.;
71 |
72 | let stepTimer = ((current, max), env) => {
73 | let time = increment(env);
74 | if (current +. time >= max) {
75 | ((max, max), true)
76 | } else {
77 | ((current +. time, max), false)
78 | }
79 | };
80 |
81 | let isFullTimer = ((current, max)) => current === max;
82 |
83 | let loopTimer = ((current, max), env) => {
84 | let time = increment(env);
85 | if (current +. time >= max) {
86 | ((0., max), true)
87 | } else {
88 | ((current +. time, max), false)
89 | }
90 | };
91 |
92 | let countDown = ((current, max)) =>
93 | if (current <= 1) {
94 | ((0, max), true)
95 | } else {
96 | ((current - 1, max), false)
97 | };
--------------------------------------------------------------------------------
/src/Play_types.re:
--------------------------------------------------------------------------------
1 |
2 | type line = ((float, float), (float, float));
3 |
4 | let module LineSet = Set.Make({
5 | type t = line;
6 | let compare = compare;
7 | });
8 |
9 | type player = {pos: Geom.point, vel: Geom.vector, size: float};
10 |
11 | type tapState = OffTarget | NotDown | Down(Geom.point, float) | Moved;
12 | type lastInputMethod = Keyboard | Mouse;
13 |
14 | type state = {
15 | tapState,
16 | lastInputMethod,
17 | walls: list(Mazere.Border.t),
18 | coords: array((string, (float, float))),
19 | distances: array(((float, float), int)),
20 | goalDistance: int,
21 | path: LineSet.t,
22 | pathTimer: Timer.t,
23 | startTime: float,
24 | pendingPath: MyQueue.t(line),
25 | mazeSize: int,
26 | currentPos: (float, float),
27 | tileCenter: ((float, float)) => (float, float),
28 | player,
29 | target: (float, float),
30 | jumpTimer: Timer.t,
31 | jumping: option((Timer.t, float)),
32 | time: float,
33 | };
34 |
35 | type stars = One | Two | TwoSlow | Three;
36 |
37 | type score = {
38 | avgSpeed: float,
39 | pathLength: float,
40 | stars,
41 | };
42 |
43 | type status =
44 | | AnimateIn(option((state, Timer.t, score)), state, Timer.t)
45 | | Playing(state)
46 | ;
--------------------------------------------------------------------------------
/src/ScreenManager.re:
--------------------------------------------------------------------------------
1 |
2 | module Screen = {
3 | type nextScreen('context, 'a, 'b) =
4 | | Same('context, 'a)
5 | | Transition('context, 'b)
6 | | Stateless('context)
7 | | TransitionNoContext('b)
8 | ;
9 | type transitionFn('context, 'state, 'transition) = ('context, 'state, Reprocessing.glEnvT) => nextScreen('context, 'state, 'transition);
10 | type screen('context, 'state, 'transition) = {
11 | run: transitionFn('context, 'state, 'transition),
12 | keyPressed: transitionFn('context, 'state, 'transition),
13 | mouseDown: transitionFn('context, 'state, 'transition),
14 | mouseUp: transitionFn('context, 'state, 'transition),
15 | backPressed: ('context, 'state, Reprocessing.glEnvT) => option(nextScreen('context, 'state, 'transition)),
16 | };
17 | type screenable('context, 'transition, 'wrappedState) =
18 | | Screen('state, screen('context, 'state, 'transition), 'state => 'wrappedState): screenable('context, 'transition, 'wrappedState);
19 | };
20 |
21 | open Screen;
22 |
23 | let empty = {
24 | run: (ctx, state, _) => Same(ctx, state),
25 | mouseDown: (ctx, state, _) => Same(ctx, state),
26 | mouseUp: (ctx, state, _) => Same(ctx, state),
27 | keyPressed: (ctx, state, _) => Same(ctx, state),
28 | backPressed: (_, _, _) => None,
29 | };
30 |
31 | let stateless = (
32 | ~run=(ctx, _) => Stateless(ctx),
33 | ~mouseDown=(ctx, _) => Stateless(ctx),
34 | ~mouseUp=(ctx, _) => Stateless(ctx),
35 | ~keyPressed=(ctx, _) => Stateless(ctx),
36 | ~backPressed=(_, _) => None,
37 | ()
38 | ) => {
39 | run: (ctx, (), env) => run(ctx, env),
40 | mouseDown: (ctx, (), env) => mouseDown(ctx, env),
41 | mouseUp: (ctx, (), env) => mouseUp(ctx, env),
42 | keyPressed: (ctx, (), env) => keyPressed(ctx, env),
43 | backPressed: (ctx, (), env) => backPressed(ctx, env),
44 | };
45 |
46 | let module Helpers = {
47 | let process = (~transitionTo, ~context, ~env, ~innerState, ~wrapper, run) => {
48 | switch (run(context, innerState, env)) {
49 | | Same(context, newInnerState) => (context, wrapper(newInnerState))
50 | | Transition(context, transition) => (context, transitionTo(context, transition, env))
51 | | Stateless(context) => (context, wrapper(innerState))
52 | | TransitionNoContext(transition) => (context, transitionTo(context, transition, env))
53 | }
54 | };
55 |
56 | let draw = (transitionTo, getScreen, (context, state), env) => {
57 | let Screen(innerState, screen, wrapper) = getScreen(state);
58 | process(~transitionTo, ~context, ~env, ~innerState, ~wrapper, screen.run);
59 | };
60 |
61 | let keyPressed = (transitionTo, getScreen, (context, state), env) => {
62 | let Screen(innerState, screen, wrapper) = getScreen(state);
63 | process(~transitionTo, ~context, ~env, ~innerState, ~wrapper, screen.keyPressed);
64 | };
65 |
66 | let mouseDown = (transitionTo, getScreen, (context, state), env) => {
67 | let Screen(innerState, screen, wrapper) = getScreen(state);
68 | process(~transitionTo, ~context, ~env, ~innerState, ~wrapper, screen.mouseDown);
69 | };
70 |
71 | let mouseUp = (transitionTo, getScreen, (context, state), env) => {
72 | let Screen(innerState, screen, wrapper) = getScreen(state);
73 | process(~transitionTo, ~context, ~env, ~innerState, ~wrapper, screen.mouseUp);
74 | };
75 |
76 | let backPressed = (transitionTo, getScreen, (context, state), env) => {
77 | let Screen(innerState, screen, wrapper) = getScreen(state);
78 | switch (screen.backPressed(context, innerState, env)) {
79 | | None => None
80 | | Some(value) => Some(switch value {
81 | | Same(context, newInnerState) => (context, wrapper(newInnerState))
82 | | Transition(context, transition) => (context, transitionTo(context, transition, env))
83 | | Stateless(context) => (context, wrapper(innerState))
84 | | TransitionNoContext(transition) => (context, transitionTo(context, transition, env))
85 | })
86 | }
87 | };
88 | };
89 |
90 | let run = (~title=?, ~transitionTo, ~setup, ~getScreen, ()) => {
91 | Reprocessing.run(
92 | ~setup,
93 | ~draw=Helpers.draw(transitionTo, getScreen),
94 | ~mouseDown=Helpers.mouseDown(transitionTo, getScreen),
95 | ~mouseUp=Helpers.mouseUp(transitionTo, getScreen),
96 | ~keyPressed=Helpers.keyPressed(transitionTo, getScreen),
97 | ~backPressed=Helpers.backPressed(transitionTo, getScreen),
98 | ~title=?title,
99 | ()
100 | )
101 | };
--------------------------------------------------------------------------------
/src/Shared.re:
--------------------------------------------------------------------------------
1 |
2 | let fakePhone = try {Sys.getenv("PHONE") |> ignore; true} { | Not_found => false };
3 | let isPhone = Reprocessing.target == "native-ios" || Reprocessing.target == "native-android" || fakePhone;
4 |
5 | type context = {
6 | height: float,
7 | width: float,
8 | smallFont: Reprocessing.fontT,
9 | textFont: Reprocessing.fontT,
10 | titleFont: Reprocessing.fontT,
11 | boldTextFont: Reprocessing.fontT,
12 | smallTitleFont: Reprocessing.fontT,
13 | };
14 |
15 | type globalState('status) = {
16 | context,
17 | screenState: 'status,
18 | };
--------------------------------------------------------------------------------
/src/Test.re:
--------------------------------------------------------------------------------
1 |
2 | print_endline("Testing");
3 |
--------------------------------------------------------------------------------
/src/Timer.re:
--------------------------------------------------------------------------------
1 |
2 | type t = (float, float);
3 | let percent = ((amount, full)) => amount /. full;
4 |
5 | let inc = ((amount, full), env) => (min(full, amount +. Reprocessing.Env.deltaTime(env)), full);
6 | let isFull = ((amount, full)) => amount == full;
7 | let restart = ((_, full)) => (0., full);
8 | let incLoop = (timer, env) => {
9 | let timer = inc(timer, env);
10 | (isFull(timer) ? restart(timer) : timer, isFull(timer))
11 | };
12 | let fill = ((_, full)) => (full, full);
13 | let createFull = full => (full, full);
14 | let createEmpty = full => (0., full);
15 |
16 | let in2 = ((amount, full)) => {
17 | let p = amount /. full;
18 | if (p < 0.5) {
19 | `First(p *. 2.)
20 | } else {
21 | `Second((p -. 0.5) *. 2.)
22 | }
23 | };
24 |
25 | let in3 = ((amount, full)) => {
26 | let p = amount /. full;
27 | if (p < 1. /. 3.) {
28 | `First(p *. 3.)
29 | } else if (p < 2. /. 3.) {
30 | `Second((p -. 1. /. 3.) *. 3.)
31 | } else {
32 | `Third((p -. 2. /. 3.) *. 3.)
33 | }
34 | };
--------------------------------------------------------------------------------
/src/UIManager.re:
--------------------------------------------------------------------------------
1 |
2 | open Reprocessing;
3 |
4 | type align =
5 | | Left
6 | | Right
7 | | Center;
8 |
9 | type valign =
10 | | Top
11 | | Bottom
12 | | Middle;
13 |
14 | type textStyle = {
15 | font: fontT,
16 | tint: option(colorT)
17 | };
18 |
19 | type buttonStyle = {
20 | textStyle,
21 | bgColor: colorT,
22 | borderColor: colorT,
23 | hoverBorderColor: colorT,
24 | innerBorder: option(colorT),
25 | fixedWidth: option(int),
26 | enabled: bool,
27 | margin: int
28 | };
29 |
30 | type element('action) =
31 | | Text(string, textStyle, align)
32 | | Button(string, 'action, buttonStyle)
33 | | Spacer(int)
34 | | VBox(list(element('action)), int, align)
35 | | Custom(glEnvT => (int, int), (glEnvT, (int, int)) => unit, (glEnvT, (int, int)) => option('action))
36 | ;
37 |
38 | let getTextWidth = (env, font, text) => switch font^ {
39 | | None => 0
40 | | Some(font) => Reprocessing_Font.Font.calcStringWidth(env, font, text)
41 | };
42 |
43 | let measureText = (env, font, text) => switch font^ {
44 | | None => (0, 0)
45 | | Some(font) => {
46 | let x = Reprocessing_Font.Font.getChar(font, 'X');
47 | let width = Reprocessing_Font.Font.calcStringWidth(env, font, text);
48 | (width, x.Reprocessing_Font.Font.height)
49 | }
50 | };
51 |
52 | let addBoth = ((a, b), (c, d)) => (a + c, b + d);
53 |
54 | let rec measure = (env, element) => switch element {
55 | | Text(text, style, _) => measureText(env, style.font, text)
56 | | Button(text, _, style) => {
57 | let (w, h) = measureText(env, style.textStyle.font, text);
58 | let w = switch style.fixedWidth {
59 | | Some(w) => w
60 | | None => w + style.margin * 2
61 | };
62 | (w, h + style.margin * 2)
63 | }
64 | | Custom(measure, draw, act) => measure(env)
65 | | Spacer(height) => (0, height)
66 | | VBox(items, spacer, _align) => {
67 | let (w, h) = List.fold_left(
68 | ((tw, th), item) => {
69 | let (w, h) = measure(env, item);
70 | (max(w, tw), h + spacer + th)
71 | },
72 | (0, 0),
73 | items
74 | );
75 | (w, max(0, h - spacer))
76 | }
77 | };
78 |
79 | let rec draw = (env, element, (x, y), align, valign) => {
80 | let (w, h) = measure(env, element);
81 | let x = switch align {
82 | | Left => x
83 | | Right => x - w
84 | | Center => x - w/2
85 | };
86 | let y = switch valign {
87 | | Top => y
88 | | Middle => y - h/2
89 | | Bottom => y - h
90 | };
91 | switch element {
92 | | Text(text, {font, tint}, align) => {
93 | switch (tint) {
94 | | Some(color) => Draw.tint(color, env)
95 | | None => Draw.noTint(env)
96 | };
97 | Draw.text(~body=text, ~font, ~pos=(x,y), env);
98 | Draw.noTint(env);
99 | }
100 | | Button(text, _, style) => {
101 | Draw.fill(style.bgColor, env);
102 | Draw.strokeWeight(2, env);
103 | Draw.stroke(style.borderColor, env);
104 |
105 | if (style.enabled && MyUtils.rectCollide(Env.mouse(env), ((x, y), (w, h)))) {
106 | Draw.stroke(style.hoverBorderColor, env);
107 | };
108 |
109 | Draw.rect(~pos=(x, y), ~width=w, ~height=h, env);
110 |
111 | switch (style.innerBorder) {
112 | | None => ()
113 | | Some(color) => {
114 | Draw.stroke(color, env);Draw.noFill(env);
115 | Draw.rect(~pos=(x + style.margin/2, y + style.margin/2), ~width=w-style.margin, ~height=h-style.margin, env);
116 | }
117 | };
118 |
119 | let x = switch (style.fixedWidth) {
120 | | None => x + style.margin
121 | | Some(_) => {
122 | x + w / 2 - getTextWidth(env, style.textStyle.font, text) / 2
123 | }
124 | };
125 | switch (style.textStyle.tint) {
126 | | Some(color) => Draw.tint(color, env)
127 | | None => Draw.noTint(env)
128 | };
129 | Draw.text(~pos=(x, y + style.margin), ~body=text, ~font=style.textStyle.font, env);
130 | Draw.noTint(env);
131 | }
132 | | Custom(_measure, draw, _act) => draw(env, (x, y))
133 | | Spacer(_) => ()
134 | | VBox(items, spacer, childAlign) => {
135 | let x = switch childAlign {
136 | | Left => x
137 | | Center => x + w/2
138 | | Right => x + w
139 | };
140 | List.fold_left(
141 | (y, item) => {
142 | let (w, h) = draw(env, item, (x, y), childAlign, Top);
143 | y + h + spacer
144 | },
145 | y,
146 | items
147 | ) |> ignore;
148 | }
149 | };
150 | (w, h)
151 | };
152 |
153 | let rec act = (env, element, (x, y), align, valign) => {
154 | let (w, h) = measure(env, element);
155 | let x = switch align {
156 | | Left => x
157 | | Right => x - w
158 | | Center => x - w/2
159 | };
160 | let y = switch valign {
161 | | Top => y
162 | | Middle => y - h/2
163 | | Bottom => y - h
164 | };
165 | let action = switch element {
166 | | Button(text, action, style) => {
167 | if (style.enabled && MyUtils.rectCollide(Env.mouse(env), ((x, y), (w, h)))) {
168 | Some(action)
169 | } else {
170 | None
171 | }
172 | }
173 | | Custom(_measure, _draw, act) => act(env, (x, y))
174 | | VBox(items, spacer, childAlign) => {
175 | let x = switch childAlign {
176 | | Left => x
177 | | Center => x + w/2
178 | | Right => x + w
179 | };
180 | let (_, action) = List.fold_left(
181 | ((y, action), item) => {
182 | switch (action) {
183 | | Some(x) => (0, action)
184 | | _ =>
185 | let ((w, h), action) = act(env, item, (x, y), childAlign, Top);
186 | (y + h + spacer, action)
187 | }
188 | },
189 | (y, None),
190 | items
191 | );
192 | action
193 | }
194 | | _ => None
195 | };
196 |
197 | ((w, h), action)
198 | };
199 |
200 | let act = (env, element, pos, align, valign) => {
201 | snd(act(env, element, pos, align, valign))
202 | };
203 |
204 | type rootElement('action) = {
205 | el: element('action),
206 | align,
207 | valign,
208 | pos: (int, int)
209 | };
210 |
211 | let act = (env, {el, align, valign, pos}) => act(env, el, pos, align, valign);
212 | let draw = (env, {el, align, valign, pos}) => draw(env, el, pos, align, valign) |> ignore;
213 |
--------------------------------------------------------------------------------
/src/android.re:
--------------------------------------------------------------------------------
1 |
2 | Main.run("", false);
3 |
4 |
--------------------------------------------------------------------------------
/src/dev.re:
--------------------------------------------------------------------------------
1 |
2 | let (/+) = Filename.concat;
3 | let assetDir = Filename.dirname(Sys.argv[0]) /+ ".." /+ ".." /+ ".." /+ "assets";
4 | Main.run(assetDir, true);
5 |
--------------------------------------------------------------------------------
/src/indexhot.re:
--------------------------------------------------------------------------------
1 |
2 | Reprocessing.hotreload("src/dev.re");
3 |
4 | Main.noop();
--------------------------------------------------------------------------------
/src/ios.re:
--------------------------------------------------------------------------------
1 | print_endline("IOS here for duty");
2 | Main.run("./assets", false);
--------------------------------------------------------------------------------
/src/prod.re:
--------------------------------------------------------------------------------
1 |
2 | let (/+) = Filename.concat;
3 | let assetDir = Filename.dirname(Sys.argv[0]) /+ "assets";
4 | Main.run(assetDir, false);
5 |
--------------------------------------------------------------------------------
/src/web.re:
--------------------------------------------------------------------------------
1 | Main.run("./assets", false);
2 |
--------------------------------------------------------------------------------
/src/webhot.re:
--------------------------------------------------------------------------------
1 | /* This is so we'll load all of the bucklescript stuff */
2 | let m = Main.run;
3 | Reprocessing.hotreload("./src/web.re")
--------------------------------------------------------------------------------