diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json deleted file mode 100644 index c2098a2..0000000 --- a/.vscode/c_cpp_properties.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "configurations": [ - { - "name": "linux-gcc-x64", - "includePath": [ - "${workspaceFolder}/**" - ], - "compilerPath": "/usr/bin/gcc", - "cStandard": "${default}", - "cppStandard": "${default}", - "intelliSenseMode": "linux-gcc-x64", - "compilerArgs": [ - "" - ] - } - ], - "version": 4 -} \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 4916f53..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version": "0.2.0", - "configurations": [ - { - "name": "Debug with CodeLLDB", - "type": "lldb", - "request": "launch", - "program": "${fileDirname}/${fileBasenameNoExtension}", - "args": [], - "cwd": "${fileDirname}", - "preLaunchTask": "C/C++: gcc build active file" - } - ] -} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 3e5eb95..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,59 +0,0 @@ -{ - "C_Cpp_Runner.cCompilerPath": "gcc", - "C_Cpp_Runner.cppCompilerPath": "g++", - "C_Cpp_Runner.debuggerPath": "gdb", - "C_Cpp_Runner.cStandard": "", - "C_Cpp_Runner.cppStandard": "", - "C_Cpp_Runner.msvcBatchPath": "", - "C_Cpp_Runner.useMsvc": false, - "C_Cpp_Runner.warnings": [ - "-Wall", - "-Wextra", - "-Wpedantic", - "-Wshadow", - "-Wformat=2", - "-Wcast-align", - "-Wconversion", - "-Wsign-conversion", - "-Wnull-dereference" - ], - "C_Cpp_Runner.msvcWarnings": [ - "/W4", - "/permissive-", - "/w14242", - "/w14287", - "/w14296", - "/w14311", - "/w14826", - "/w44062", - "/w44242", - "/w14905", - "/w14906", - "/w14263", - "/w44265", - "/w14928" - ], - "C_Cpp_Runner.enableWarnings": true, - "C_Cpp_Runner.warningsAsError": false, - "C_Cpp_Runner.compilerArgs": [], - "C_Cpp_Runner.linkerArgs": [], - "C_Cpp_Runner.includePaths": [], - "C_Cpp_Runner.includeSearch": [ - "*", - "**/*" - ], - "C_Cpp_Runner.excludeSearch": [ - "**/build", - "**/build/**", - "**/.*", - "**/.*/**", - "**/.vscode", - "**/.vscode/**" - ], - "C_Cpp_Runner.useAddressSanitizer": false, - "C_Cpp_Runner.useUndefinedSanitizer": false, - "C_Cpp_Runner.useLeakSanitizer": false, - "C_Cpp_Runner.showCompilationTime": false, - "C_Cpp_Runner.useLinkTimeOptimization": false, - "C_Cpp_Runner.msvcSecureNoWarnings": false -} \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index b5d524c..0000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "type": "shell", - "label": "C/C++: gcc build active file", - "command": "/usr/bin/gcc", - "args": [ - "-g", - "${file}", - "-o", - "${fileDirname}/${fileBasenameNoExtension}" - ], - "options": { - "cwd": "${fileDirname}" - }, - "problemMatcher": [ - "$gcc" - ], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} \ No newline at end of file diff --git a/README.md b/README.md index f79231f..8b95dfd 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,25 @@ # WrldBox Sandbox Simulator -**WrldBox** is a work-in-progress sandbox simulator made by Team wholeworldcoding. +## 🧊Introduction -Currently, it is in a prototype/experimental stage: +**WrldBox** is a work-in-progress sandbox simulator made by Team wholeworldcoding. It is currently in an experimental stage. -- Rendering is extremely buggy. `ray.c` experiences orientation problems and is vibe coded and unchecked. +It consists of two components: -The only usuable product is `text_physics.c`. This is a text physics simulator that simulates 2D physics. +- `text_physics.c`, a text-based 1-object physics simulation -Expect more updates. This has huge potential to become the next big `wholeworldcoding` project. +- `ray.c`, rendering the simulation with raylib. -> [!TIP] -> Don't expect anything to work! \ No newline at end of file +This project has a huge potential to become the next major `wholeworldcoding` project. + +## 🛠️ Build and Compile + +Clone the repository. Once you have navigated to the folder, you can run: + +- `make text && ./text_physics.out` to compile and run `text_physics.c` + +- `make visual && ./ray.out` to compile and run `ray.c` + +## 🏅Credits + +This project was impossible without the support of all three `wholeworldcoding` members. \ No newline at end of file diff --git a/ray.c b/ray.c index c6ade80..124225c 100644 --- a/ray.c +++ b/ray.c @@ -1,8 +1,15 @@ +// ray.c A-0-i by team wholeworldcoding. +// working physics simulation with 1 object, limited playground and fixed parameters +// This is P7MJ, out. + +// Changes: +// Reversing gravity makes it work?!!! + #include #include #include "raylib.h" -const float g = -9.81; +const float g = 9.81; // Gravity is inversed cause raylib uses top right corner as origin float obj_x = 100; // Starting X (pixels) float obj_y = 100; // Starting Y (pixels) float obj_vel_x = 50; // Velocity X (pixels/second) diff --git a/structure.txt b/structure.txt new file mode 100644 index 0000000..342daca --- /dev/null +++ b/structure.txt @@ -0,0 +1,4 @@ +launcher.c + render.c + character.c + physics.c