Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions gui/GUIController
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import pygame

class GUIControllerController:

def intialize(void):
return

def update(void):
return

def render(void):
return

def shutdown(void):
return

14 changes: 14 additions & 0 deletions gui/HandGestureInputControl.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import pygame

class HandGestureInputControl:
def __init__(self):
self.gesture = "up"

def captureGesture(void):
return

def mapGestureToAction(gesture:str):
return

def performClickAction(void):void

22 changes: 22 additions & 0 deletions gui/MainMenu.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import pygame
class MainMenu:

def __init__(self):
self.menuOptions = [2]


def displayMenu():
return


def handleSelection(selection:str):
return selection


def navigateToSelectionScreen(void):
return

def displaySettings(void):
return


17 changes: 17 additions & 0 deletions gui/MiniGameSelectionScreen.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import pygame

class MiniGameSelectionScreen:
def __init__(self,menuOptions:str[3]):
self.menuOptions = menuOptions

def displayGames(void):
return

def handleSelection(selection:str):
return

def startSelectedGame(game:str):
return

def exitGame():
pygame.quit()
13 changes: 13 additions & 0 deletions gui/PlayerSelectionScreen.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import pygame

class PlayerSelectionScreen:

def __init__(self, numOfPlayers:int):
self.numOfPlayers = numOfPlayers

def displayOptions(void):
return

def handleSelection(selection:int):
return 2