From d439495908286f1404bd0e676ddf8cbd06c12159 Mon Sep 17 00:00:00 2001 From: Jaap Marsman Date: Sun, 31 Jul 2022 13:12:31 +0800 Subject: [PATCH] started first commit --- .gitignore | 15 +++++++++++ LICENSE.md | 1 + README.md | 3 +++ godot/Wellbeing App.csproj | 6 +++++ godot/Wellbeing App.sln | 19 +++++++++++++ godot/button_email_feedback.gd | 20 ++++++++++++++ godot/button_open_github.gd | 19 +++++++++++++ godot/default_env.tres | 7 +++++ godot/icon.png | Bin 0 -> 3305 bytes godot/icon.png.import | 35 ++++++++++++++++++++++++ godot/project.godot | 27 +++++++++++++++++++ godot/start_screen.cs | 21 +++++++++++++++ godot/start_screen.tscn | 47 +++++++++++++++++++++++++++++++++ makefile | 4 +++ notes/brainstorm.md | 11 ++++++++ 15 files changed, 235 insertions(+) create mode 100644 .gitignore create mode 100644 LICENSE.md create mode 100644 README.md create mode 100644 godot/Wellbeing App.csproj create mode 100644 godot/Wellbeing App.sln create mode 100644 godot/button_email_feedback.gd create mode 100644 godot/button_open_github.gd create mode 100644 godot/default_env.tres create mode 100644 godot/icon.png create mode 100644 godot/icon.png.import create mode 100644 godot/project.godot create mode 100644 godot/start_screen.cs create mode 100644 godot/start_screen.tscn create mode 100644 makefile create mode 100644 notes/brainstorm.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fb91791 --- /dev/null +++ b/.gitignore @@ -0,0 +1,15 @@ +.DS_Store + +# ---> Godot +# Godot-specific ignores +.import/ +export.cfg +export_presets.cfg + +# Imported translations (automatically generated from CSV files) +*.translation + +# Mono-specific ignores +.mono/ +data_*/ + diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..ca3e242 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1 @@ +Creative Commons Licence
This work is licensed under a Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License. \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..086cc70 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# wellbeing_app + +A freeware and open source wellbeing app. \ No newline at end of file diff --git a/godot/Wellbeing App.csproj b/godot/Wellbeing App.csproj new file mode 100644 index 0000000..cfa7992 --- /dev/null +++ b/godot/Wellbeing App.csproj @@ -0,0 +1,6 @@ + + + net472 + WellbeingApp + + \ No newline at end of file diff --git a/godot/Wellbeing App.sln b/godot/Wellbeing App.sln new file mode 100644 index 0000000..1c8d276 --- /dev/null +++ b/godot/Wellbeing App.sln @@ -0,0 +1,19 @@ +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 2012 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Wellbeing App", "Wellbeing App.csproj", "{D7C38C84-2B97-4842-B86C-55CA66888418}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + ExportDebug|Any CPU = ExportDebug|Any CPU + ExportRelease|Any CPU = ExportRelease|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {D7C38C84-2B97-4842-B86C-55CA66888418}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D7C38C84-2B97-4842-B86C-55CA66888418}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D7C38C84-2B97-4842-B86C-55CA66888418}.ExportDebug|Any CPU.ActiveCfg = ExportDebug|Any CPU + {D7C38C84-2B97-4842-B86C-55CA66888418}.ExportDebug|Any CPU.Build.0 = ExportDebug|Any CPU + {D7C38C84-2B97-4842-B86C-55CA66888418}.ExportRelease|Any CPU.ActiveCfg = ExportRelease|Any CPU + {D7C38C84-2B97-4842-B86C-55CA66888418}.ExportRelease|Any CPU.Build.0 = ExportRelease|Any CPU + EndGlobalSection +EndGlobal diff --git a/godot/button_email_feedback.gd b/godot/button_email_feedback.gd new file mode 100644 index 0000000..7710c8d --- /dev/null +++ b/godot/button_email_feedback.gd @@ -0,0 +1,20 @@ +extends Button + + +# Declare member variables here. Examples: +# var a = 2 +# var b = "text" + + +# Called when the node enters the scene tree for the first time. +func _ready(): + pass # Replace with function body. + + +# Called every frame. 'delta' is the elapsed time since the previous frame. +#func _process(delta): +# pass + + +func _on_button_email_feedback_pressed(): + OS.shell_open("mailto:feedback@jaapmarsman.com") diff --git a/godot/button_open_github.gd b/godot/button_open_github.gd new file mode 100644 index 0000000..f9d7ba8 --- /dev/null +++ b/godot/button_open_github.gd @@ -0,0 +1,19 @@ +extends Button + + +# Declare member variables here. Examples: +# var a = 2 +# var b = "text" + + +# Called when the node enters the scene tree for the first time. +#func _ready(): +# pass + +# Called every frame. 'delta' is the elapsed time since the previous frame. +#func _process(delta): +# pass + + +func _on_button_open_github_pressed(): + OS.shell_open("https://godotengine.org") diff --git a/godot/default_env.tres b/godot/default_env.tres new file mode 100644 index 0000000..20207a4 --- /dev/null +++ b/godot/default_env.tres @@ -0,0 +1,7 @@ +[gd_resource type="Environment" load_steps=2 format=2] + +[sub_resource type="ProceduralSky" id=1] + +[resource] +background_mode = 2 +background_sky = SubResource( 1 ) diff --git a/godot/icon.png b/godot/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..c98fbb601c83c81ec8c22b1dba7d1d57c62b323c GIT binary patch literal 3305 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 literal 0 HcmV?d00001 diff --git a/godot/icon.png.import b/godot/icon.png.import new file mode 100644 index 0000000..a4c02e6 --- /dev/null +++ b/godot/icon.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://icon.png" +dest_files=[ "res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.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=true +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 +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=true +svg/scale=1.0 diff --git a/godot/project.godot b/godot/project.godot new file mode 100644 index 0000000..ef35eaa --- /dev/null +++ b/godot/project.godot @@ -0,0 +1,27 @@ +; Engine configuration file. +; It's best edited using the editor UI and not directly, +; since the parameters that go here are not all obvious. +; +; Format: +; [section] ; section goes between [] +; param=value ; assign values to parameters + +config_version=4 + +[application] + +config/name="Wellbeing App" +run/main_scene="res://start_screen.tscn" +config/icon="res://icon.png" + +[gui] + +theme/use_hidpi=true + +[physics] + +common/enable_pause_aware_picking=true + +[rendering] + +environment/default_environment="res://default_env.tres" diff --git a/godot/start_screen.cs b/godot/start_screen.cs new file mode 100644 index 0000000..b5adc9e --- /dev/null +++ b/godot/start_screen.cs @@ -0,0 +1,21 @@ +using Godot; +using System; + +public class start_screen : Node2D +{ + // Declare member variables here. Examples: + // private int a = 2; + // private string b = "text"; + + // Called when the node enters the scene tree for the first time. + public override void _Ready() + { + + } + +// // Called every frame. 'delta' is the elapsed time since the previous frame. +// public override void _Process(float delta) +// { +// +// } +} diff --git a/godot/start_screen.tscn b/godot/start_screen.tscn new file mode 100644 index 0000000..d12b29d --- /dev/null +++ b/godot/start_screen.tscn @@ -0,0 +1,47 @@ +[gd_scene load_steps=4 format=2] + +[ext_resource path="res://start_screen.cs" type="Script" id=1] +[ext_resource path="res://button_open_github.gd" type="Script" id=2] +[ext_resource path="res://button_email_feedback.gd" type="Script" id=3] + +[node name="Node2D" type="Node2D"] +script = ExtResource( 1 ) +__meta__ = { +"_edit_horizontal_guides_": [ ] +} + +[node name="start_menu" type="Node2D" parent="."] + +[node name="button_daily_action" type="Button" parent="start_menu"] +margin_left = 51.0 +margin_top = 75.0 +margin_right = 140.0 +margin_bottom = 95.0 +text = "Daily Action" + +[node name="RichTextLabel" type="RichTextLabel" parent="start_menu"] +margin_left = 19.0 +margin_top = 22.0 +margin_right = 277.0 +margin_bottom = 53.0 +text = "Good morning, Jaap! +" + +[node name="button_open_github" type="Button" parent="start_menu"] +margin_left = 98.0 +margin_top = 195.0 +margin_right = 135.0 +margin_bottom = 215.0 +text = "URL" +script = ExtResource( 2 ) + +[node name="button_email_feedback" type="Button" parent="start_menu"] +margin_left = 169.0 +margin_top = 137.0 +margin_right = 241.0 +margin_bottom = 157.0 +text = "Feedback" +script = ExtResource( 3 ) + +[connection signal="pressed" from="start_menu/button_open_github" to="start_menu/button_open_github" method="_on_button_open_github_pressed"] +[connection signal="pressed" from="start_menu/button_email_feedback" to="start_menu/button_email_feedback" method="_on_button_email_feedback_pressed"] diff --git a/makefile b/makefile new file mode 100644 index 0000000..c10e7c8 --- /dev/null +++ b/makefile @@ -0,0 +1,4 @@ +git: + git add -A + git commit -m "$m" + git push diff --git a/notes/brainstorm.md b/notes/brainstorm.md new file mode 100644 index 0000000..4d734b1 --- /dev/null +++ b/notes/brainstorm.md @@ -0,0 +1,11 @@ +# Initial brainstorm + +Not quite sure yet where to go with this one... + +- Courses ("Living a psychologically rich life") +- White Noise +- Generated Music +- Pomodoro Timer +- + +Pitched towards 15-16 year olds. \ No newline at end of file