Skip to content

Commit

Permalink
WIP: Continue restructuring framework and incorporating infrastructur…
Browse files Browse the repository at this point in the history
…e from Inner-Tube Climber.
  • Loading branch information
levilindsey committed Mar 18, 2021
1 parent ad2813f commit 50262c0
Show file tree
Hide file tree
Showing 386 changed files with 2,212 additions and 4,536 deletions.
50 changes: 50 additions & 0 deletions .gitignore
Expand Up @@ -31,3 +31,53 @@ node_modules
secure-config.js
.mono
.import
*.kra~
dist/ios/*

# Built application files
android/build/*/build/
android/build/build/

# Crashlytics configuations
com_crashlytics_export_strings.xml

# Local configuration file (sdk path, etc)
local.properties

# Gradle generated files
.gradle/

# Signing files
.signing/

# User-specific configurations
.idea/libraries/
.idea/workspace.xml
.idea/tasks.xml
.idea/.name
.idea/compiler.xml
.idea/copyright/profiles_settings.xml
.idea/encodings.xml
.idea/misc.xml
.idea/modules.xml
.idea/scopes/scope_settings.xml
.idea/vcs.xml
*.iml
project.code-workspace

# OS-specific files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# Releases that shouldn't be included in the repo
*.apk

# App-release secrets
secret/
secrets/
export_presets.cfg
2 changes: 1 addition & 1 deletion LICENSE
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2019-2020 Levi Lindsey
Copyright (c) 2019-2021 Snoring Cat LLC

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
482 changes: 16 additions & 466 deletions README.md

Large diffs are not rendered by default.

21 changes: 21 additions & 0 deletions addons/scaffold/LICENSE
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2020-2021 Snoring Cat LLC

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
11 changes: 11 additions & 0 deletions addons/scaffold/README.md
@@ -0,0 +1,11 @@
# Godot Scaffold

_**[Example app](https://github.com/snoringcatgames/squirrel-away)**_

## Licenses

- All code is published under the [MIT license](LICENSE).
- All art assets (files under `assets/images/`, `assets/music/`, and `assets/sounds/`) are published under the [CC0 1.0 Universal license](https://creativecommons.org/publicdomain/zero/1.0/deed.en).
- This project depends on various pieces of third-party code that are licensed separately. [Here is a list of these third-party licenses](./src/scaffold_third_party_licenses.gd).

![An animated icon consisting of spinning gear, a game controller, and a pixelated jumping character](assets/images/spinning_gear_icon.gif)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
7 changes: 7 additions & 0 deletions addons/scaffold/assets/fonts/main_font_italic.tres
@@ -0,0 +1,7 @@
[gd_resource type="DynamicFont" load_steps=2 format=2]

[ext_resource path="res://addons/scaffold/assets/fonts/Open_Sans/OpenSans-Italic.ttf" type="DynamicFontData" id=1]


[resource]
font_data = ExtResource( 1 )
7 changes: 7 additions & 0 deletions addons/scaffold/assets/fonts/main_font_l.tres
@@ -0,0 +1,7 @@
[gd_resource type="DynamicFont" load_steps=2 format=2]

[ext_resource path="res://addons/scaffold/assets/fonts/Open_Sans/OpenSans-Regular.ttf" type="DynamicFontData" id=1]

[resource]
size = 28
font_data = ExtResource( 1 )
6 changes: 6 additions & 0 deletions addons/scaffold/assets/fonts/main_font_m.tres
@@ -0,0 +1,6 @@
[gd_resource type="DynamicFont" load_steps=2 format=2]

[ext_resource path="res://addons/scaffold/assets/fonts/Open_Sans/OpenSans-Regular.ttf" type="DynamicFontData" id=1]

[resource]
font_data = ExtResource( 1 )
8 changes: 8 additions & 0 deletions addons/scaffold/assets/fonts/main_font_m_bold.tres
@@ -0,0 +1,8 @@
[gd_resource type="DynamicFont" load_steps=2 format=2]

[ext_resource path="res://addons/scaffold/assets/fonts/Open_Sans/OpenSans-Bold.ttf" type="DynamicFontData" id=1]


[resource]
size = 20
font_data = ExtResource( 1 )
8 changes: 8 additions & 0 deletions addons/scaffold/assets/fonts/main_font_m_italic.tres
@@ -0,0 +1,8 @@
[gd_resource type="DynamicFont" load_steps=2 format=2]

[ext_resource path="res://addons/scaffold/assets/fonts/Open_Sans/OpenSans-Italic.ttf" type="DynamicFontData" id=1]


[resource]
size = 20
font_data = ExtResource( 1 )
7 changes: 7 additions & 0 deletions addons/scaffold/assets/fonts/main_font_s.tres
@@ -0,0 +1,7 @@
[gd_resource type="DynamicFont" load_steps=2 format=2]

[ext_resource path="res://addons/scaffold/assets/fonts/Open_Sans/OpenSans-Regular.ttf" type="DynamicFontData" id=1]

[resource]
size = 12
font_data = ExtResource( 1 )
7 changes: 7 additions & 0 deletions addons/scaffold/assets/fonts/main_font_xl.tres
@@ -0,0 +1,7 @@
[gd_resource type="DynamicFont" load_steps=2 format=2]

[ext_resource path="res://addons/scaffold/assets/fonts/Open_Sans/OpenSans-Regular.ttf" type="DynamicFontData" id=1]

[resource]
size = 32
font_data = ExtResource( 1 )
@@ -1,6 +1,6 @@
[gd_resource type="DynamicFont" load_steps=2 format=2]

[ext_resource path="res://assets/fonts/Open_Sans/OpenSans-Regular.ttf" type="DynamicFontData" id=1]
[ext_resource path="res://addons/scaffold/assets/fonts/Open_Sans/OpenSans-Regular.ttf" type="DynamicFontData" id=1]

[resource]
size = 10
Expand Down
@@ -1,6 +1,7 @@
[gd_resource type="DynamicFont" load_steps=2 format=2]

[ext_resource path="res://assets/fonts/Open_Sans/OpenSans-Italic.ttf" type="DynamicFontData" id=1]
[ext_resource path="res://addons/scaffold/assets/fonts/Open_Sans/OpenSans-Italic.ttf" type="DynamicFontData" id=1]


[resource]
size = 10
Expand Down
File renamed without changes
Expand Up @@ -2,15 +2,15 @@

importer="texture"
type="StreamTexture"
path="res://.import/icon-128.png-83b76ec9fb0adca68462470a2d823da2.stex"
path="res://.import/icon-128.png-a16bec5b2d3b6a154ee666151c7d5397.stex"
metadata={
"vram_texture": false
}

[deps]

source_file="res://assets/images/device-icons/icon-128.png"
dest_files=[ "res://.import/icon-128.png-83b76ec9fb0adca68462470a2d823da2.stex" ]
source_file="res://addons/scaffold/assets/images/device-icons/icon-128.png"
dest_files=[ "res://.import/icon-128.png-a16bec5b2d3b6a154ee666151c7d5397.stex" ]

[params]

Expand Down
File renamed without changes
Expand Up @@ -2,15 +2,15 @@

importer="texture"
type="StreamTexture"
path="res://.import/icon-32.png-5fcfb806c967f4e325b8d8cb150cbff3.stex"
path="res://.import/icon-32.png-0d70db2e3280e9e70e7b2c58e5da7d72.stex"
metadata={
"vram_texture": false
}

[deps]

source_file="res://assets/images/device-icons/icon-32.png"
dest_files=[ "res://.import/icon-32.png-5fcfb806c967f4e325b8d8cb150cbff3.stex" ]
source_file="res://addons/scaffold/assets/images/device-icons/icon-32.png"
dest_files=[ "res://.import/icon-32.png-0d70db2e3280e9e70e7b2c58e5da7d72.stex" ]

[params]

Expand Down
File renamed without changes
Expand Up @@ -2,15 +2,15 @@

importer="texture"
type="StreamTexture"
path="res://.import/icon-64.png-f4b64229df29080eebb50a8c28041bb7.stex"
path="res://.import/icon-64.png-cd21c3475104f2222840825ab82fef76.stex"
metadata={
"vram_texture": false
}

[deps]

source_file="res://assets/images/device-icons/icon-64.png"
dest_files=[ "res://.import/icon-64.png-f4b64229df29080eebb50a8c28041bb7.stex" ]
source_file="res://addons/scaffold/assets/images/device-icons/icon-64.png"
dest_files=[ "res://.import/icon-64.png-cd21c3475104f2222840825ab82fef76.stex" ]

[params]

Expand Down
Binary file not shown.
Binary file not shown.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
34 changes: 34 additions & 0 deletions addons/scaffold/assets/images/gui/go_icon_normal_large.png.import
@@ -0,0 +1,34 @@
[remap]

importer="texture"
type="StreamTexture"
path="res://.import/go_icon_normal_large.png-12d3f8d01b3c5f0ddf9a5e1c630cfb63.stex"
metadata={
"vram_texture": false
}

[deps]

source_file="res://addons/scaffold/assets/images/gui/go_icon_normal_large.png"
dest_files=[ "res://.import/go_icon_normal_large.png-12d3f8d01b3c5f0ddf9a5e1c630cfb63.stex" ]

[params]

compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=false
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=true
svg/scale=1.0
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes.
15 changes: 15 additions & 0 deletions addons/scaffold/assets/music/on_a_quest.ogg.import
@@ -0,0 +1,15 @@
[remap]

importer="ogg_vorbis"
type="AudioStreamOGGVorbis"
path="res://.import/on_a_quest.ogg-4373591f3ed5c5c780994e8297b8a5e7.oggstr"

[deps]

source_file="res://addons/scaffold/assets/music/on_a_quest.ogg"
dest_files=[ "res://.import/on_a_quest.ogg-4373591f3ed5c5c780994e8297b8a5e7.oggstr" ]

[params]

loop=true
loop_offset=0
File renamed without changes.
21 changes: 21 additions & 0 deletions addons/scaffold/assets/sounds/achievement.wav.import
@@ -0,0 +1,21 @@
[remap]

importer="wav"
type="AudioStreamSample"
path="res://.import/achievement.wav-ded879cfc1a722ae5fed563c39cc94c5.sample"

[deps]

source_file="res://addons/scaffold/assets/sounds/achievement.wav"
dest_files=[ "res://.import/achievement.wav-ded879cfc1a722ae5fed563c39cc94c5.sample" ]

[params]

force/8_bit=false
force/mono=false
force/max_rate=false
force/max_rate_hz=44100
edit/trim=false
edit/normalize=false
edit/loop=false
compress/mode=0
File renamed without changes.
Expand Up @@ -2,12 +2,12 @@

importer="wav"
type="AudioStreamSample"
path="res://.import/cadence.wav-88573df1d798be4e222afceabdb0798f.sample"
path="res://.import/cadence.wav-11d6287bede47a4d137f9f86f976c1d7.sample"

[deps]

source_file="res://assets/sounds/cadence.wav"
dest_files=[ "res://.import/cadence.wav-88573df1d798be4e222afceabdb0798f.sample" ]
source_file="res://addons/scaffold/assets/sounds/cadence.wav"
dest_files=[ "res://.import/cadence.wav-11d6287bede47a4d137f9f86f976c1d7.sample" ]

[params]

Expand Down
File renamed without changes.
Expand Up @@ -2,12 +2,12 @@

importer="wav"
type="AudioStreamSample"
path="res://.import/fall.wav-a9597ef07e0ca07c21e040aeace0e83e.sample"
path="res://.import/fall.wav-5fbb34228f978ba1d102671d6f2325c7.sample"

[deps]

source_file="res://assets/sounds/fall.wav"
dest_files=[ "res://.import/fall.wav-a9597ef07e0ca07c21e040aeace0e83e.sample" ]
source_file="res://addons/scaffold/assets/sounds/fall.wav"
dest_files=[ "res://.import/fall.wav-5fbb34228f978ba1d102671d6f2325c7.sample" ]

[params]

Expand Down
File renamed without changes.
Expand Up @@ -2,12 +2,12 @@

importer="wav"
type="AudioStreamSample"
path="res://.import/jump.wav-395b727cde98999423d5c020c9c3492f.sample"
path="res://.import/jump.wav-e1318a1248f6064d6c4b44d6684ee8eb.sample"

[deps]

source_file="res://assets/sounds/jump.wav"
dest_files=[ "res://.import/jump.wav-395b727cde98999423d5c020c9c3492f.sample" ]
source_file="res://addons/scaffold/assets/sounds/jump.wav"
dest_files=[ "res://.import/jump.wav-e1318a1248f6064d6c4b44d6684ee8eb.sample" ]

[params]

Expand Down
File renamed without changes.
Expand Up @@ -2,12 +2,12 @@

importer="wav"
type="AudioStreamSample"
path="res://.import/land.wav-cd8d2744755c021fdf0a5c99fad2dd3c.sample"
path="res://.import/land.wav-0efc9d2524db030227898be576160700.sample"

[deps]

source_file="res://assets/sounds/land.wav"
dest_files=[ "res://.import/land.wav-cd8d2744755c021fdf0a5c99fad2dd3c.sample" ]
source_file="res://addons/scaffold/assets/sounds/land.wav"
dest_files=[ "res://.import/land.wav-0efc9d2524db030227898be576160700.sample" ]

[params]

Expand Down
File renamed without changes.
21 changes: 21 additions & 0 deletions addons/scaffold/assets/sounds/menu_select.wav.import
@@ -0,0 +1,21 @@
[remap]

importer="wav"
type="AudioStreamSample"
path="res://.import/menu_select.wav-53923275b70d0828fb016d94bf6c1dcf.sample"

[deps]

source_file="res://addons/scaffold/assets/sounds/menu_select.wav"
dest_files=[ "res://.import/menu_select.wav-53923275b70d0828fb016d94bf6c1dcf.sample" ]

[params]

force/8_bit=false
force/mono=false
force/max_rate=false
force/max_rate_hz=44100
edit/trim=false
edit/normalize=false
edit/loop=false
compress/mode=0
File renamed without changes.

0 comments on commit 50262c0

Please sign in to comment.