6 Commits

15 changed files with 58 additions and 225 deletions

View File

@@ -1,87 +0,0 @@
name: Build Project
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
# - windows-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Dependencies (Linux)
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install -y \
build-essential \
gcc \
g++ \
make \
git \
cmake \
libasound2-dev \
mesa-common-dev \
libx11-dev \
libxrandr-dev \
libxinerama-dev \
libxcursor-dev \
libxi-dev \
libgl1-mesa-dev \
libglu1-mesa-dev
- name: Build & Install Raylib (Linux)
if: runner.os == 'Linux'
run: |
git clone --depth 1 https://github.com/raysan5/raylib.git
cd raylib/src
make PLATFORM=PLATFORM_DESKTOP
sudo make install
# - name: Install MSYS2 and Raylib (Windows)
# if: runner.os == 'Windows'
# uses: msys2/setup-msys2@v2
# with:
# msystem: MINGW64
# update: true
# install: >
# mingw-w64-x86_64-gcc
# mingw-w64-x86_64-make
# mingw-w64-x86_64-raylib
- name: Build (Linux)
if: runner.os == 'Linux'
run: make
# - name: Build (Windows)
# if: runner.os == 'Windows'
# shell: msys2 {0}
# run: make
- name: Upload Linux Artifact
if: runner.os == 'Linux'
uses: actions/upload-artifact@v3
with:
name: wrldbox-linux
path: wrldbox
# - name: Upload Windows Artifact
# if: runner.os == 'Windows'
# uses: actions/upload-artifact@v3
# with:
# name: wrldbox-windows
# path: "*.exe"

View File

@@ -4,8 +4,7 @@ SRC=src/main.c \
src/world.c \ src/world.c \
src/player.c \ src/player.c \
src/physics.c \ src/physics.c \
src/render.c \ src/render.c
src/collision.c\
OUT=wrldbox OUT=wrldbox

View File

@@ -1,5 +0,0 @@
gcc src/*.c -o wrldboxMacOS \
-I/opt/homebrew/include \
-L/opt/homebrew/lib \
-lraylib \
-framework OpenGL -framework Cocoa -framework IOKit -framework CoreVideo

View File

@@ -1,6 +1,4 @@
# WrldBox Engine # WrldBox Sandbox Simulator
This project *is* the next major `wholeworldcoding` project.
## 🧊Introduction ## 🧊Introduction
@@ -18,12 +16,18 @@ It consists of several components:
- OLD contains the original logic this came from. - OLD contains the original logic this came from.
This project *is* the next major `wholeworldcoding` project.
## 🛠️ Build and Compile ## 🛠️ Build and Compile
Clone the repository. Once you have navigated to the folder, you can run: Clone the repository. Once you have navigated to the folder, you can run:
- `make` - `make`
## 🌳 This Branch
This is the branch for the cube-based RPG.
## 🏅Credits ## 🏅Credits
This project was impossible without the support of all four `wholeworldcoding` members. This project was impossible without the support of all three `wholeworldcoding` members.

13
home/p7mj/idea.txt Normal file
View File

@@ -0,0 +1,13 @@
Develop a particular branch of this game into a RPG with a storyline and characters as cubes.
So the storyline I can think of now is:
You are a cube (pick name w/o numbers or symbols, and color)
You are in school
You like another cube, but the cube likes someone else
they get together and u get angry, first few missions is sabotage daily life of the other cube's xxxfriend
then it evolves into all out war

View File

@@ -1,68 +0,0 @@
#include "world.h"
#include <math.h>
#include "config.h"
#include "collision.h"
#include "player.h"
#include <stdio.h>
void checkCollision(){
for(int u=0; u<=MAX_ENTITIES-1; u++){
Entity *en1 = &entities[u];
if(!en1->active){
continue;
}
en1->headgrounded = false;
for(int j=u+1; j<=MAX_ENTITIES-1; j++){
if(u!=j){
Entity *en2 = &entities[j];
if(!en2->active){
continue;
}
printf("%d\n", en1->headgrounded);
float half = (en1->size + en2->size) * 0.5f;
float overlapX = half - fabsf(en1->position.x - en2->position.x);
float overlapY = half - fabsf(en1->position.y - en2->position.y);
if (overlapX > 0 && overlapY > 0)
{
if (overlapY < overlapX && en1->position.y < en2->position.y)
{
// top collision
en1->position.y = en2->position.y - half;
en1->velocity.y = 0;
en1->velocity.x *= en2->drag;
en1->headgrounded = true;
} else {
en1->headgrounded = false;
float forcex=fabsf(((en1->mass+en2->mass)/2)*((((en1->velocity.x)+(scale))+((en2->velocity.x)+(scale)))/2))*(scale*1.5);
float forcey=fabsf(((en1->mass+en2->mass)/2)*((((en1->velocity.y)+(scale))+((en2->velocity.y)+(scale)))/2))*(scale/4);
if(en1->position.x < en2->position.x){
en1->velocity.x=0;
en2->velocity.x=0;
ApplyForce(
en1,
(Vector2){-forcex, 0}
);
ApplyForce(
en2,
(Vector2){forcex, 0}
);
}
else{
en1->velocity.x=0;
en2->velocity.x=0;
ApplyForce(
en1,
(Vector2){forcex, 0}
);
ApplyForce(
en2,
(Vector2){-forcex, 0}
);
}
}
}
}
}
}
}

View File

@@ -1,8 +0,0 @@
#ifndef COLLISION_H
#define COLLISION_H
// FUNction declaration! yay!!!
// run by main.c constantly to allow player input.
void checkCollision();
#endif

View File

@@ -10,7 +10,6 @@ typedef struct Entity
bool isPlayer; bool isPlayer;
bool affectedByGravity; bool affectedByGravity;
bool headgrounded;
float mass; float mass;
float size; float size;
@@ -21,7 +20,6 @@ typedef struct Entity
Vector2 force; Vector2 force;
Color color; Color color;
float drag;
} Entity; } Entity;

View File

@@ -6,7 +6,6 @@
#include "player.h" #include "player.h"
#include "render.h" #include "render.h"
#include "config.h" #include "config.h"
#include "collision.h"
int main(void) int main(void)
{ {
@@ -21,20 +20,20 @@ int main(void)
SetTargetFPS(60); SetTargetFPS(60);
// Now we actually start the code InitWorld(); // from world.h
InitWorld();
printf("WrldBox engine started\n"); printf("WrldBox engine started\n");
printf("Gravity = %.2f\n", g); printf("Gravity = %.2f\n", g);
// until we close the window, expect inputs
while (!WindowShouldClose()) while (!WindowShouldClose())
{ {
// Calculate delta time for consistent performace across different FPSes
float dt = GetFrameTime(); float dt = GetFrameTime();
if (IsKeyPressed(KEY_P)) if (IsKeyPressed(KEY_P))
{ {
// If it's simulating, stop simulating. If it isn't simulating, start simulating. // Toggle simulation
isSimulating = !isSimulating; isSimulating = !isSimulating;
} }
@@ -46,8 +45,7 @@ int main(void)
if (IsKeyPressed(KEY_Q)) if (IsKeyPressed(KEY_Q))
{ {
// We're gonna have to rewrite the entity logic at some point. Because an actual game doesn't just contain a bunch of blocks. But whatever for now... // Test feature: spawn random cube
// Q key pressed? -> Poof, box, random position, random size, random color.
SpawnEntity( SpawnEntity(
GetRandomValue(50, 950), GetRandomValue(50, 950),
GetRandomValue(20, 150), GetRandomValue(20, 150),
@@ -59,8 +57,7 @@ int main(void)
GetRandomValue(50,255), GetRandomValue(50,255),
GetRandomValue(50,255), GetRandomValue(50,255),
255 255
}, });
GetRandomValue(0, 1) + 0.1f);
} }
if (IsMouseButtonPressed(MOUSE_BUTTON_LEFT)) if (IsMouseButtonPressed(MOUSE_BUTTON_LEFT))
@@ -73,15 +70,13 @@ int main(void)
m.y, m.y,
25, 25,
1.0f, 1.0f,
ORANGE, ORANGE);
0.1f);
} }
if (isSimulating) if (isSimulating)
{ {
// allow player to be controlled, fit everything within the size of the screen // allow player to be controlled, fit everything within the size of the screen
UpdatePlayerControls(); UpdatePlayerControls();
checkCollision();
UpdateEntities(dt, screenWidth); UpdateEntities(dt, screenWidth);
simTime += dt; simTime += dt;
@@ -92,6 +87,7 @@ int main(void)
ClearBackground(RAYWHITE); ClearBackground(RAYWHITE);
// Ground line
DrawLine( DrawLine(
0, 0,
(int)ground_y, (int)ground_y,
@@ -99,6 +95,7 @@ int main(void)
(int)ground_y, (int)ground_y,
DARKGRAY); DARKGRAY);
// Ground Text
DrawText( DrawText(
"GROUND", "GROUND",
10, 10,
@@ -106,9 +103,9 @@ int main(void)
20, 20,
DARKGRAY); DARKGRAY);
DrawEntities(); DrawEntities(); // from render.c
DrawRectangle( DrawRectangle( // title box
0, 0,
0, 0,
screenWidth, screenWidth,
@@ -137,6 +134,8 @@ int main(void)
20, 20,
BLACK); BLACK);
// if player exists, draw position and velocity
if (player) if (player)
{ {
DrawText( DrawText(
@@ -177,10 +176,10 @@ int main(void)
DrawText("Q = Random Cube", 700, 105, 18, BLACK); DrawText("Q = Random Cube", 700, 105, 18, BLACK);
DrawText("P = Pause | R = Reset", 700, 125, 18, BLACK); DrawText("P = Pause | R = Reset", 700, 125, 18, BLACK);
EndDrawing(); EndDrawing(); // end the current draw loop
} }
// When the window wants to close, close it. What a surprise. // At this point the window was closed
CloseWindow(); CloseWindow();
return 0; return 0;
} }

View File

@@ -21,7 +21,7 @@ void UpdateEntities(float dt, int screenWidth)
bool onGround = IsGrounded(e); bool onGround = IsGrounded(e);
// Apply gravity force if enabled for this entity // Apply gravity force if enabled for this entity
if (e->affectedByGravity && !onGround) if (e->affectedByGravity)
{ {
ApplyForce( ApplyForce(
e, e,

View File

@@ -7,7 +7,6 @@
// let's a go! // let's a go!
float curhorvel=0.0f; //current horizonatal velocity float curhorvel=0.0f; //current horizonatal velocity
bool dir=0;
void UpdatePlayerControls(void) void UpdatePlayerControls(void)
{ {
// if there isn't a player, you probably can't do much // if there isn't a player, you probably can't do much
@@ -15,13 +14,12 @@ void UpdatePlayerControls(void)
return; return;
} }
if(curhorvel==0.0f){ if(curhorvel==0.0f){
curhorvel=65.5f*scale; curhorvel=10.0f*scale;
} }
// if a key pressed, push player to the left // if a key pressed, push player to the left
if (IsKeyDown(KEY_A)) if (IsKeyDown(KEY_A))
{ {
dir=1; if(curhorvel<PMV){
if(curhorvel<MAX_PLAYER_SPEED){
curhorvel=curhorvel*PLAYER_SPEED_FACTOR; curhorvel=curhorvel*PLAYER_SPEED_FACTOR;
} }
ApplyForce( ApplyForce(
@@ -32,8 +30,7 @@ void UpdatePlayerControls(void)
// if d key pressed, push player to the right // if d key pressed, push player to the right
else if (IsKeyDown(KEY_D)) else if (IsKeyDown(KEY_D))
{ {
dir=0; if(curhorvel<=PMV){
if(curhorvel<=MAX_PLAYER_SPEED){
curhorvel=curhorvel*PLAYER_SPEED_FACTOR; curhorvel=curhorvel*PLAYER_SPEED_FACTOR;
} }
ApplyForce( ApplyForce(
@@ -42,7 +39,7 @@ void UpdatePlayerControls(void)
); );
} }
else{ else{
curhorvel=65.5f*scale; curhorvel=10.0f*scale;
} }
// if sspace key pressed (and player isn't already jumping), push player // if sspace key pressed (and player isn't already jumping), push player
if (IsGrounded(player) && if (IsGrounded(player) &&

View File

@@ -1,19 +1,19 @@
#include <stddef.h> #include <stddef.h>
#include "world.h" #include "world.h"
#include "collision.h"
// the beeg one. hooooooooooooooooh boy // the beeg one. hooooooooooooooooh boy
const float scale = 43.7445319335f; const float scale = 43.7445319335f;
const float g = 9.81f * scale; const float g = 9.81f * scale;
const float PLAYER_SPEED_FACTOR =1.1f; //1.1 is good const float PMV = 10000.0*scale; //Player Max Velocity
const float JUMP_FORCE = 450.0f*scale; const float PLAYER_SPEED_FACTOR =1.3f;
const float JUMP_FORCE = 300.0f*scale;
const float AIR_DRAG = 0.999f; const float AIR_DRAG = 0.999f;
const float GROUND_FRICTION = 27.432f*scale; const float GROUND_FRICTION = 1200.0f;
const float MAX_PLAYER_SPEED = 10.0f*scale; const float MAX_PLAYER_SPEED = 300.0f;
const float BOUNCE = 0.45f; const float BOUNCE = 0.45f;
@@ -40,12 +40,12 @@ bool IsGrounded(Entity *e)
{ {
if (!e) if (!e)
return false; return false;
if(e->position.y +e->size * 0.5f >=ground_y - 2.0f || e->headgrounded){
return true; return (
} e->position.y +
else{ e->size * 0.5f >=
return false; ground_y - 2.0f
} );
} }
Entity *SpawnEntity( Entity *SpawnEntity(
@@ -53,8 +53,7 @@ Entity *SpawnEntity(
float y, float y,
float size, float size,
float mass, float mass,
Color color, Color color)
float drag)
{ {
for (int i = 0; i < MAX_ENTITIES; i++) for (int i = 0; i < MAX_ENTITIES; i++)
{ {
@@ -69,7 +68,6 @@ Entity *SpawnEntity(
e->mass = mass; e->mass = mass;
e->size = size; e->size = size;
e->drag = drag;
e->position = (Vector2){x, y}; e->position = (Vector2){x, y};
e->velocity = (Vector2){0, 0}; e->velocity = (Vector2){0, 0};
@@ -77,7 +75,6 @@ Entity *SpawnEntity(
e->force = (Vector2){0, 0}; e->force = (Vector2){0, 0};
e->color = color; e->color = color;
e->headgrounded = false;
return e; return e;
} }
@@ -108,8 +105,7 @@ void InitWorld(void)
120, 120,
40, 40,
1.0f, 1.0f,
BLUE, BLUE);
0.1f);
if (player) if (player)
{ {
@@ -123,8 +119,7 @@ void InitWorld(void)
50, 50,
25, 25,
1.0f, 1.0f,
RED, RED);
0.9f);
} }
simTime = 0.0f; simTime = 0.0f;

View File

@@ -12,13 +12,10 @@ extern bool isSimulating;
extern float simTime; extern float simTime;
extern const float scale; extern const float PMV;
extern const float MAX_PLAYER_SPEED;
extern const float PLAYER_SPEED_FACTOR; extern const float PLAYER_SPEED_FACTOR;
void ApplyForce(Entity *e, Vector2 force); void ApplyForce(Entity *e, Vector2 force);
bool IsGrounded(Entity *e); bool IsGrounded(Entity *e);
@@ -27,8 +24,7 @@ Entity *SpawnEntity(
float y, float y,
float size, float size,
float mass, float mass,
Color color, Color color);
float drag);
void ClearWorld(void); void ClearWorld(void);
void InitWorld(void); void InitWorld(void);

BIN
wrldbox

Binary file not shown.

Binary file not shown.