aboutsummaryrefslogtreecommitdiff
path: root/src/GameLoop
diff options
context:
space:
mode:
Diffstat (limited to 'src/GameLoop')
-rw-r--r--src/GameLoop/shop.c28
-rw-r--r--src/GameLoop/shop.h15
-rw-r--r--src/GameLoop/startingScreen.c30
-rw-r--r--src/GameLoop/startingScreen.h12
4 files changed, 0 insertions, 85 deletions
diff --git a/src/GameLoop/shop.c b/src/GameLoop/shop.c
deleted file mode 100644
index 31ff5ce..0000000
--- a/src/GameLoop/shop.c
+++ /dev/null
@@ -1,28 +0,0 @@
-#include "shop.h"
-
-
-bool hh_show_Shop(){
- static hh_e_ShopStates hh_e_Shop = hh_e_STATE_SHOW;
-
- switch (hh_e_Shop)
- {
- case hh_e_STATE_SHOW:
- hh_setup_startingScreen();
- hh_e_Shop = hh_e_STATE_Input;
- return false;
- break;
- case hh_e_STATE_Input:
- if(g_hh_controller_p1.dpad_right){
- hh_e_Shop = hh_e_STATE_END;
- }
- break;
- case hh_e_STATE_END:
- hh_e_Shop = hh_e_STATE_SHOW;
- return true;
- break;
- default:
- hh_e_Shop = hh_e_STATE_SHOW;
- break;
- }
- return false;
-}
diff --git a/src/GameLoop/shop.h b/src/GameLoop/shop.h
deleted file mode 100644
index 39db9fd..0000000
--- a/src/GameLoop/shop.h
+++ /dev/null
@@ -1,15 +0,0 @@
-#pragma once
-
-#include "input.h"
-#include "engine/draw_screen.h"
-
-#include <stdint.h>
-#include <stdbool.h>
-
-typedef enum {
- hh_e_STATE_SHOW,
- hh_e_STATE_Input,
- hh_e_STATE_END
-} hh_e_ShopStates;
-
-bool hh_show_Shop();
diff --git a/src/GameLoop/startingScreen.c b/src/GameLoop/startingScreen.c
deleted file mode 100644
index a0cd283..0000000
--- a/src/GameLoop/startingScreen.c
+++ /dev/null
@@ -1,30 +0,0 @@
-#include "startingScreen.h"
-#include "input.h"
-#include "engine/draw_screen.h"
-// #include "engine/player_controller.h"
-
-bool hh_show_startingScreen(){
- static hh_e_screenStates hh_e_startingScreen = hh_e_STATE_SHOW;
-
- switch (hh_e_startingScreen)
- {
- case hh_e_STATE_SHOW:
- hh_setup_startingScreen();
- hh_e_startingScreen = hh_e_STATE_Input;
- return false;
- break;
- case hh_e_STATE_Input:
- if(g_hh_controller_p1.dpad_left){
- hh_e_startingScreen = hh_e_STATE_END;
- }
- break;
- case hh_e_STATE_END:
- hh_e_startingScreen = hh_e_STATE_SHOW;
- return true;
- break;
- default:
- hh_e_startingScreen = hh_e_STATE_SHOW;
- break;
- }
- return false;
-}
diff --git a/src/GameLoop/startingScreen.h b/src/GameLoop/startingScreen.h
deleted file mode 100644
index 5b4f15a..0000000
--- a/src/GameLoop/startingScreen.h
+++ /dev/null
@@ -1,12 +0,0 @@
-#pragma once
-
-#include "GameLoop/shop.h"
-#include <stdint.h>
-#include <stdbool.h>
-
-// TODO: fix naming of enum consts
-typedef hh_e_ShopStates hh_e_screenStates;
-
-
-bool hh_show_startingScreen();
-