diff --git a/CMakeLists.txt b/CMakeLists.txt index ff1ae5ee..9909e519 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,7 +20,7 @@ set(SETTING_GAME_POKER 1) set(SETTING_GAME_DAWN 2) set(SETTING_GAME_SANDBOX 3) -set(SETTING_GAME SETTING_GAME_DAWN) +set(SETTING_GAME SETTING_GAME_POKER) set(SETTING_GAME_NAME "DawnGame") ################################## Targets ##################################### @@ -71,16 +71,6 @@ if(${SETTING_PLATFORM} EQUAL ${SETTING_PLATFORM_SDL}) endif() #################################### ASSETS #################################### -if(${SETTING_GAME} EQUAL ${SETTING_GAME_SANDBOX}) - set(SCRIPT_FILES scripts.js) - add_custom_command( - OUTPUT ${SCRIPT_FILES} - COMMAND npm run build - DEPENDS ${SOURCE_FILES} - WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} - ) -endif() - file(COPY ${CMAKE_CURRENT_LIST_DIR}/assets DESTINATION ${CMAKE_CURRENT_BINARY_DIR}) ##################################### LIBS ##################################### diff --git a/package.json b/package.json deleted file mode 100644 index 3ad47e07..00000000 --- a/package.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "name": "Dawn", - "version": "1.0.0", - "main": "index.js", - "repository": "https://YourWishes@github.com/YourWishes/Dawn.git", - "author": "Dominic Masters ", - "license": "MIT", - "scripts": { - "build:typescript:production": "tsc -p .", - "build:production": "npm run build:typescript:production", - "bundle:production": "node ./scripts/bundle.js", - "build": "npm run build:production && npm run bundle:production" - }, - "devDependencies": { - "tsc": "^2.0.3", - "typescript": "^4.4.3" - } -} diff --git a/src/game/poker/actions/bet.c b/src/game/poker/actions/bet.c index c5325165..2532ae95 100644 --- a/src/game/poker/actions/bet.c +++ b/src/game/poker/actions/bet.c @@ -49,32 +49,7 @@ void _pokerGameActionBetOnUpdate( pokerTurnAction(&game->poker, player, &turn); // Speak - switch(turn.type) { - case POKER_TURN_TYPE_BET: - discussion.reason = POKER_DISCUSSION_REASON_PLAYER_RAISING; - break; - - case POKER_TURN_TYPE_CALL: - discussion.reason = POKER_DISCUSSION_REASON_PLAYER_CALLING; - break; - - case POKER_TURN_TYPE_ALL_IN: - discussion.reason = POKER_DISCUSSION_REASON_PLAYER_ALL_IN; - break; - - case POKER_TURN_TYPE_FOLD: - discussion.reason = POKER_DISCUSSION_REASON_PLAYER_FOLDING; - break; - - case POKER_TURN_TYPE_CHECK: - discussion.reason = POKER_DISCUSSION_REASON_PLAYER_CHECKING; - break; - - default: - discussion.reason = POKER_DISCUSSION_REASON_TEST; - break; - } - + discussion.reason = pokerDiscussionGetTypeFromTurnType(turn.type); discussion.poker = game; discussion.playerCause = game->poker.bet.better; pokerDiscussionQueue(&discussion); @@ -104,7 +79,6 @@ void _pokerGameActionBetOnEnd( } // Not waiting, do next action. - printf("Not waiting on anything!\n"); pokerGameActionFlopAdd(game); } diff --git a/src/game/poker/actions/flop.c b/src/game/poker/actions/flop.c index 9a5ab06a..cba4e207 100644 --- a/src/game/poker/actions/flop.c +++ b/src/game/poker/actions/flop.c @@ -40,7 +40,6 @@ void _pokerGameActionFlopOnStart( if(pokerBetGetRemainingPlayerCount( &game->poker.bet, game->poker.players ) > 1) { - // Begin betting. pokerGameActionLookAdd(game, game->poker.bet.better); pokerGameActionBetAdd(game); @@ -56,7 +55,6 @@ void _pokerGameActionFlopOnStart( } // Done betting - printf("All betting is done, reveal\n"); pokerGameActionRestackAdd(game); pokerGameActionWinnerAdd(game); diff --git a/src/game/poker/actions/flop.h b/src/game/poker/actions/flop.h index f203682e..bd2a4e25 100644 --- a/src/game/poker/actions/flop.h +++ b/src/game/poker/actions/flop.h @@ -16,6 +16,11 @@ #include "winner.h" #include "bet.h" +/** Callback that is fired when the flop action starts */ +void _pokerGameActionFlopOnStart( + queue_t *queue, queueaction_t *action, uint8_t i +); + /** * Queues a flop action on to the queue. * diff --git a/src/game/poker/actions/restack.c b/src/game/poker/actions/restack.c index f1052c0b..53d47e3e 100644 --- a/src/game/poker/actions/restack.c +++ b/src/game/poker/actions/restack.c @@ -11,7 +11,6 @@ void _pokerGameActionRestackOnStart( queue_t *queue, queueaction_t *action, uint8_t i ) { pokergame_t *game = (pokergame_t *)action->data; - printf("Restacking\n"); pokerGameQueueRestack(game); queueNext(queue); } diff --git a/src/game/poker/actions/winner.c b/src/game/poker/actions/winner.c index 55b7dbf3..5e05f22d 100644 --- a/src/game/poker/actions/winner.c +++ b/src/game/poker/actions/winner.c @@ -14,7 +14,6 @@ void _pokerGameActionWinnerOnStart( pokergame_t *game = (pokergame_t *)action->data; // Calculate the winners - printf("Winner start action"); pokerWinnerCalculate( &game->poker.winner, &game->poker.dealer, @@ -24,13 +23,6 @@ void _pokerGameActionWinnerOnStart( // Action pokerGameWin(&game->poker); - // Debug printing. - printf("Winner Count %u\n", game->poker.winner.winnerCount); - for(uint8_t i = 0; i < game->poker.winner.winnerCount; i++) { - uint8_t winner = game->poker.winner.winners[i]; - printf("Winner %u\n", winner); - } - // Say stuff discussion.reason = POKER_DISCUSSION_REASON_BETTING_DONE; discussion.poker = game; diff --git a/src/game/poker/pokerdiscussion.c b/src/game/poker/pokerdiscussion.c index 516b8892..38d6f0d6 100644 --- a/src/game/poker/pokerdiscussion.c +++ b/src/game/poker/pokerdiscussion.c @@ -109,6 +109,29 @@ void pokerDiscussionGet( } } +uint8_t pokerDiscussionGetTypeFromTurnType(uint8_t winningType) { + switch(winningType) { + case POKER_TURN_TYPE_BET: + return POKER_DISCUSSION_REASON_PLAYER_RAISING; + + case POKER_TURN_TYPE_CALL: + return POKER_DISCUSSION_REASON_PLAYER_CALLING; + + case POKER_TURN_TYPE_ALL_IN: + return POKER_DISCUSSION_REASON_PLAYER_ALL_IN; + + case POKER_TURN_TYPE_FOLD: + return POKER_DISCUSSION_REASON_PLAYER_FOLDING; + break; + + case POKER_TURN_TYPE_CHECK: + return POKER_DISCUSSION_REASON_PLAYER_CHECKING; + + default: + return POKER_DISCUSSION_REASON_TEST; + } +} + void pokerDiscussionQueue(pokerdiscussiondata_t *data) { pokerdiscussion_t discussion; uint8_t i, player; diff --git a/src/game/poker/pokerdiscussion.h b/src/game/poker/pokerdiscussion.h index 6992ca08..9b153b4a 100644 --- a/src/game/poker/pokerdiscussion.h +++ b/src/game/poker/pokerdiscussion.h @@ -10,6 +10,7 @@ #include "../../vn/conversation/vnconversation.h" #include "../../vn/conversation/talk.h" #include "actions/look.h" +#include "../../poker/turn.h" /** Maximum number of messages that the discussion buffer can hold */ #define POKER_DISCUSSION_MESSAGE_COUNT_MAX 32 @@ -49,6 +50,14 @@ typedef struct { */ void pokerDiscussionGet(pokerdiscussion_t *disc, pokerdiscussiondata_t *data); +/** + * Fetch the discussion type from a turn type. + * + * @param winningType Winning type + * @return Relevant discussion type. + */ +uint8_t pokerDiscussionGetTypeFromTurnType(uint8_t winningType); + /** * Queue a discussion data result onto the conversation stack. * diff --git a/src/game/poker/pokerui.c b/src/game/poker/pokerui.c index 64fb8c27..38c3f57d 100644 --- a/src/game/poker/pokerui.c +++ b/src/game/poker/pokerui.c @@ -69,7 +69,7 @@ void pokerUiUpdate( player = players + j; // Locate the XYZ position of the camera to look at the player - seat = pokerGameSeatFromIndex(i); + seat = pokerWorldSeatFromIndex(i); x = POKER_WORLD_SEAT_POSITION_X(seat); y = POKER_UI_PLAYER_IMAGE_Y; z = POKER_WORLD_SEAT_POSITION_Z(seat); diff --git a/src/game/poker/pokerworld.c b/src/game/poker/pokerworld.c index 4fd0be72..16a0e428 100644 --- a/src/game/poker/pokerworld.c +++ b/src/game/poker/pokerworld.c @@ -15,7 +15,7 @@ void pokerWorldInit( vncharacter_t *character; uint8_t i; - world->seat = POKER_GAME_SEAT_DEALER; + world->seat = POKER_WORLD_SEAT_DEALER; world->seatTime = 0; // Initialize the skywal @@ -25,14 +25,14 @@ void pokerWorldInit( for(i = 0x00; i < POKER_PLAYER_COUNT; i++) { character = scene->characters + scene->characterCount; vnCharacterInit(character, &assets->pennyTexture, - POKER_GAME_PENNY_BASE_WIDTH, POKER_GAME_PENNY_BASE_HEIGHT, - POKER_GAME_PENNY_FACE_X, POKER_GAME_PENNY_FACE_Y, - POKER_GAME_PENNY_FACE_WIDTH, POKER_GAME_PENNY_FACE_HEIGHT + POKER_WORLD_PENNY_BASE_WIDTH, POKER_WORLD_PENNY_BASE_HEIGHT, + POKER_WORLD_PENNY_FACE_X, POKER_WORLD_PENNY_FACE_Y, + POKER_WORLD_PENNY_FACE_WIDTH, POKER_WORLD_PENNY_FACE_HEIGHT ); - character->x = POKER_WORLD_SEAT_POSITION_X(POKER_GAME_SEAT_FOR_PLAYER(i)); + character->x = POKER_WORLD_SEAT_POSITION_X(POKER_WORLD_SEAT_FOR_PLAYER(i)); character->y = POKER_WORLD_SEAT_POSITION_Y; - character->z = POKER_WORLD_SEAT_POSITION_Z(POKER_GAME_SEAT_FOR_PLAYER(i)); - character->yaw = POKER_WORLD_SEAT_ROTATION(POKER_GAME_SEAT_FOR_PLAYER(i)); + character->z = POKER_WORLD_SEAT_POSITION_Z(POKER_WORLD_SEAT_FOR_PLAYER(i)); + character->yaw = POKER_WORLD_SEAT_ROTATION(POKER_WORLD_SEAT_FOR_PLAYER(i)); scene->characterCount++; } } diff --git a/src/game/poker/pokerworld.h b/src/game/poker/pokerworld.h index 57db30f6..a49cdb77 100644 --- a/src/game/poker/pokerworld.h +++ b/src/game/poker/pokerworld.h @@ -18,35 +18,46 @@ #include "../../engine/engine.h" #include "pokergameassets.h" - +/** How far away from the camera are the characters distanced */ #define POKER_WORLD_SEAT_DISTANCE -0.75f + +/** How rotated is the player at a given seat */ #define POKER_WORLD_SEAT_ROTATION(n) (n * mathDeg2Rad(45.0f)) +/** World X position of a given seat */ #define POKER_WORLD_SEAT_POSITION_X(n) ( \ POKER_WORLD_SEAT_DISTANCE * (float)sin(POKER_WORLD_SEAT_ROTATION(n)) \ ) +/** Y Position of seats */ #define POKER_WORLD_SEAT_POSITION_Y -0.2f +/** World Z position of a given seat */ #define POKER_WORLD_SEAT_POSITION_Z(n) ( \ POKER_WORLD_SEAT_DISTANCE * (float)cos(POKER_WORLD_SEAT_ROTATION(n)) \ ) -#define POKER_GAME_SEAT_COUNT 8 -#define POKER_GAME_SEAT_FOR_PLAYER(p) (p - (POKER_PLAYER_COUNT/2)) -#define POKER_GAME_SEAT_DEALER POKER_GAME_SEAT_FOR_PLAYER(POKER_DEALER_INDEX) +/** Count of seats in the world */ +#define POKER_WORLD_SEAT_COUNT 8 -#define pokerGameSeatFromIndex(i) (\ +/** The seat index for a given player index */ +#define POKER_WORLD_SEAT_FOR_PLAYER(p) (p - (POKER_PLAYER_COUNT/2)) + +/** The seat that the dealer occupies */ +#define POKER_WORLD_SEAT_DEALER POKER_WORLD_SEAT_FOR_PLAYER(POKER_DEALER_INDEX) + +/** The seat index for a given character index */ +#define pokerWorldSeatFromIndex(i) (\ i == POKER_DEALER_INDEX ? \ - POKER_GAME_SEAT_DEALER : \ - POKER_GAME_SEAT_FOR_PLAYER(i) \ + POKER_WORLD_SEAT_DEALER : \ + POKER_WORLD_SEAT_FOR_PLAYER(i) \ ) -#define POKER_GAME_PENNY_BASE_WIDTH 1000 -#define POKER_GAME_PENNY_BASE_HEIGHT 1920 -#define POKER_GAME_PENNY_FACE_X 367 -#define POKER_GAME_PENNY_FACE_Y 256 -#define POKER_GAME_PENNY_FACE_WIDTH 280 -#define POKER_GAME_PENNY_FACE_HEIGHT 280 - +// Penny Defs. +#define POKER_WORLD_PENNY_BASE_WIDTH 1000 +#define POKER_WORLD_PENNY_BASE_HEIGHT 1920 +#define POKER_WORLD_PENNY_FACE_X 367 +#define POKER_WORLD_PENNY_FACE_Y 256 +#define POKER_WORLD_PENNY_FACE_WIDTH 280 +#define POKER_WORLD_PENNY_FACE_HEIGHT 280 typedef struct { primitive_t skywall; @@ -56,7 +67,6 @@ typedef struct { float seatTime; } pokerworld_t; - /** * Initialize the poker renderer. * diff --git a/src/poker/actions/deal.c b/src/poker/actions/deal.c index e81f1119..f16cb21c 100644 --- a/src/poker/actions/deal.c +++ b/src/poker/actions/deal.c @@ -18,8 +18,6 @@ void _pokerActionDealOnStart(queue_t *queue, queueaction_t *action, uint8_t i) { // Deal 2 card to each player pokerDealerDealAll(&poker->dealer, poker->players, POKER_DEAL_CARD_EACH); - - printf("Cards Dealt\n"); queueNext(queue); } diff --git a/src/poker/actions/flop.c b/src/poker/actions/flop.c index 877fa415..f50302f9 100644 --- a/src/poker/actions/flop.c +++ b/src/poker/actions/flop.c @@ -13,7 +13,7 @@ void _pokerActionFlopDo(queue_t *queue, queueaction_t *action, uint8_t count) { poker->state = POKER_STATE_CARDS_FLOPPING; - pokerDealerBurn(&poker->dealer, 1); + pokerDealerBurn(&poker->dealer, POKER_FLOP_BURN_COUNT); pokerDealerTurn(&poker->dealer, count); printf("Turned %u cards\n", count); diff --git a/src/poker/actions/flop.h b/src/poker/actions/flop.h index bf4ead8b..4f93f1c9 100644 --- a/src/poker/actions/flop.h +++ b/src/poker/actions/flop.h @@ -12,6 +12,9 @@ #include "../poker.h" #include "../turn.h" +/** How many cards the dealer should burn before dealing the flop */ +#define POKER_FLOP_BURN_COUNT 1 + /** * Shorthand action callback parser. Takes the queue, action and the intended * turn count to complete the action. diff --git a/src/poker/actions/match.c b/src/poker/actions/match.c index 031e47a6..9ba1c7d1 100644 --- a/src/poker/actions/match.c +++ b/src/poker/actions/match.c @@ -18,12 +18,12 @@ void _pokerActionMatchOnStart(queue_t *queue, queueaction_t *action, uint8_t i){ // Reset the main game state. This does not init the round. pokerBetInit(&poker->bet); poker->roundDealer = POKER_PLAYER_COUNT-2; - + + // Reset the players for(x = 0; x < POKER_PLAYER_COUNT; x++) { poker->players[x].state = 0x00; poker->players[x].chips = POKER_BET_PLAYER_CHIPS_DEFAULT; } - printf("Match Start\n"); queueNext(queue); } diff --git a/src/poker/actions/round.c b/src/poker/actions/round.c index f75e3b3e..d11737de 100644 --- a/src/poker/actions/round.c +++ b/src/poker/actions/round.c @@ -23,7 +23,6 @@ void _pokerActionRoundOnStart(queue_t *queue, queueaction_t *action ,uint8_t i){ pokerDealerInit(&poker->dealer); // Reset the players - printf("Resetting the players\n"); for(i = 0; i < POKER_PLAYER_COUNT; i++) { pokerPlayerReset(poker->players + i); } @@ -56,8 +55,7 @@ void _pokerActionRoundOnStart(queue_t *queue, queueaction_t *action ,uint8_t i){ poker->roundDealer = indexDealer; poker->roundBigBlind = indexBigBlind; poker->roundSmallBlind = indexSmallBlind; - - printf("Round Start\n"); + queueNext(queue); } diff --git a/src/poker/bet.h b/src/poker/bet.h index cda4749d..ce29d5ec 100644 --- a/src/poker/bet.h +++ b/src/poker/bet.h @@ -10,7 +10,7 @@ #include "../util/array.h" /** How many chips each player has by defautl */ -#define POKER_BET_PLAYER_CHIPS_DEFAULT 10000 +#define POKER_BET_PLAYER_CHIPS_DEFAULT 1200 /** The default blind cost for the big blind. */ #define POKER_BET_BLIND_BIG_DEFAULT 600 diff --git a/src/poker/poker.h b/src/poker/poker.h index 6e71c785..aab60377 100644 --- a/src/poker/poker.h +++ b/src/poker/poker.h @@ -52,4 +52,9 @@ typedef struct { uint8_t state; } poker_t; +/** + * Action the poker game winning state after it has been calculated previously. + * + * @param poker Poker game to action the winning state of. + */ void pokerGameWin(poker_t *poker); \ No newline at end of file diff --git a/ts/asset/AssetManager.ts b/ts/asset/AssetManager.ts deleted file mode 100644 index 104e2e0b..00000000 --- a/ts/asset/AssetManager.ts +++ /dev/null @@ -1,41 +0,0 @@ -import { Shader } from "../display/Shader"; - -export interface IAssetOwner { - -} - -export class AssetManager { - private owners:{ [key:string]:IAssetOwner[] }; - private textures:{ [key:string]:CTexture }; - private shaders:{ [key:string]:Shader }; - - constructor() { - this.owners = {}; - this.textures = {}; - this.shaders = {}; - } - - private addOwner(name:string, owner:IAssetOwner) { - this.owners[name] = this.owners[name] || []; - this.owners[name].push(owner); - } - - public textureLoad(name:string, owner:IAssetOwner):CTexture { - this.addOwner(name, owner); - if(this.textures[name]) return this.textures[name]; - this.textures[name] = textureCreate(); - assetTextureLoad(this.textures[name], name); - return this.textures[name]; - } - - public shaderLoad(vert:string, frag:string, owner:IAssetOwner):Shader { - this.addOwner(vert, owner); - if(this.shaders[vert]) return this.shaders[vert]; - this.shaders[vert] = new Shader(); - assetShaderLoad(this.shaders[vert]._shader, vert, frag); - return this.shaders[vert]; - } - - public releaseOwner(owner:IAssetOwner) { - } -} \ No newline at end of file diff --git a/ts/display/Camera.ts b/ts/display/Camera.ts deleted file mode 100644 index 77518973..00000000 --- a/ts/display/Camera.ts +++ /dev/null @@ -1,32 +0,0 @@ -export class Camera { - public _camera:CCamera; - - constructor() { - this._camera = cameraCreate(); - } - - public lookAt(x:number, y:number, z:number, lx:number, ly:number, lz:number) { - cameraLookAt(this._camera, x, y, z, lx, ly, lz); - } - - public look( - x:number, y:number, z:number, pitch:number, yaw:number, roll:number - ) { - cameraLook(this._camera, x, y, z, pitch, yaw, roll); - } - - public perspective(fov:number, aspect:number, near:number, far:number) { - cameraPerspective(this._camera, fov, aspect, near, far); - } - - public ortho( - left:number, right:number, bottom:number, top:number, - near:number, far:number - ) { - cameraOrtho(this._camera, left, right, bottom, top, near, far); - } - - public dispose() { - cameraDispose(this._camera); - } -} \ No newline at end of file diff --git a/ts/display/Primitive.ts b/ts/display/Primitive.ts deleted file mode 100644 index e635d4d3..00000000 --- a/ts/display/Primitive.ts +++ /dev/null @@ -1,15 +0,0 @@ -export class Primitive { - public _primitive:CPrimitive; - - public constructor() { - this._primitive = primitiveCreate(); - } - - draw(start:number=0, count:number=-1) { - primitiveDraw(this._primitive, start, count); - } - - public dispose() { - primitiveDispose(this._primitive); - } -} \ No newline at end of file diff --git a/ts/display/Quad.ts b/ts/display/Quad.ts deleted file mode 100644 index 3a958e88..00000000 --- a/ts/display/Quad.ts +++ /dev/null @@ -1,11 +0,0 @@ -import { Primitive } from "./Primitive"; - -export class Quad extends Primitive { - constructor(z:number = 0, - x0:number = -1, y0:number = -1, u0:number = 0, v0:number = 0, - x1:number = 1, y1:number = 1, u1:number = 1, v1:number = 1 - ) { - super(); - quadInit(this._primitive, z, x0, y0, u0, v0, x1, y1, u1, v1); - } -} \ No newline at end of file diff --git a/ts/display/Shader.ts b/ts/display/Shader.ts deleted file mode 100644 index 09b094c3..00000000 --- a/ts/display/Shader.ts +++ /dev/null @@ -1,39 +0,0 @@ -import { Camera } from "./Camera"; - -export class Shader { - public _shader:CShader; - - constructor() { - this._shader = shaderCreate(); - } - - public use() { - shaderUse(this._shader); - } - - public setCamera(camera:Camera) { - shaderUseCamera(this._shader, camera._camera); - } - - public setPosition( - x:number, y:number, z:number, pitch:number, yaw:number, roll:number - ) { - shaderUsePosition(this._shader, x,y,z, pitch,yaw,roll); - } - - public setPositionAndScale( - x:number, y:number, z:number, - pitch:number, yaw:number, roll:number, - sx:number, sy:number, sz:number - ) { - shaderUsePositionAndScale(this._shader, x,y,z, pitch,yaw,roll, sx,sy,sz); - } - - public setTexture(texture:CTexture) { - shaderUseTexture(this._shader, texture); - } - - public dispose() { - shaderDispose(this._shader); - } -} \ No newline at end of file diff --git a/ts/game/Game.ts b/ts/game/Game.ts deleted file mode 100644 index 86929a1e..00000000 --- a/ts/game/Game.ts +++ /dev/null @@ -1,77 +0,0 @@ -import { AssetManager } from "../asset/AssetManager"; -import { Scene } from "../scene/Scene"; - -type Time = { - delta:number; - current:number; - last:number; -} - -export class Game { - public time:Time; - public scene:Scene|null; - public assets:AssetManager; - - constructor() { - this.time = { delta: 0, current: 0, last: 0 }; - this.assets = new AssetManager(); - this.scene = null; - } - - public setScene(scene:Scene) { this.scene = scene; } - - private timeUpdate() { - this.time.delta = epochGetDelta(); - this.time.current = epochGetCurrent(); - this.time.last = epochGetLast(); - } - - init() { - this.timeUpdate(); - } - - update() { - this.timeUpdate(); - - if(this.scene) this.scene.update(); - } - - dispose() { - if(this.scene) this.scene.dispose(); - } -} - -// Main Game Instance -let GAME_MAIN:Game|null = null; - -/** - * Set the main game instance. - * @param game Game to become the main game instance. - */ -export const gameSetMain = (game:Game) => { - GAME_MAIN = game; -} - -/** - * Method that is invoked by C when the game needs to intialize. - */ -const init = () => { - if(!GAME_MAIN) return; - GAME_MAIN.init(); -} - -/** - * Method that is invoked by C every single frame. - */ -const update = () => { - if(!GAME_MAIN) return; - GAME_MAIN.update(); -} - -/** - * Method that is invoked by C when the game needs to stop and clean up. - */ -const dispose = () => { - if(!GAME_MAIN) return; - GAME_MAIN.dispose(); -} \ No newline at end of file diff --git a/ts/main.ts b/ts/main.ts deleted file mode 100644 index 3ac620d3..00000000 --- a/ts/main.ts +++ /dev/null @@ -1,49 +0,0 @@ -import { Camera } from "./display/Camera"; -import { Quad } from "./display/Quad"; -import { Shader } from "./display/Shader"; -import { Game, gameSetMain } from "./game/Game"; -import { Scene } from "./scene/Scene"; - -class TestScene extends Scene { - private quad:Quad; - private camera:Camera; - private shader:Shader; - private texture:CTexture; - - init() { - this.quad = new Quad(); - - this.shader = this.game.assets.shaderLoad( - "shaders/textured.vert", "shaders/textured.frag", this - ); - this.texture = this.game.assets.textureLoad("test_texture.png", this); - - this.camera = new Camera(); - } - - update() { - this.camera.perspective(45, 16/9, 0.01, 100); - this.camera.lookAt(3,3,3, 0,0,0); - - this.shader.use(); - this.shader.setCamera(this.camera); - this.shader.setTexture(this.texture); - for(let i = 0; i < 3000; i++) { - this.shader.setPosition(0,0,0, 0,this.game.time.current + (i*0.0001),0); - this.quad.draw(); - } - } - - dispose() { - } -} - -class MainGame extends Game { - constructor() { - super(); - this.setScene(new TestScene(this)); - this.scene.init(); - } -} - -gameSetMain(new MainGame()); \ No newline at end of file diff --git a/ts/scene/Scene.ts b/ts/scene/Scene.ts deleted file mode 100644 index 83df2009..00000000 --- a/ts/scene/Scene.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { IAssetOwner } from "../asset/AssetManager"; -import { Game } from "../game/Game"; - -export abstract class Scene implements IAssetOwner { - public readonly game:Game; - - constructor(game:Game) { - this.game = game; - } - - abstract init():void; - abstract update():void; - abstract dispose():void; -} \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json deleted file mode 100644 index 2f0d375d..00000000 --- a/tsconfig.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "compilerOptions": { - "target": "ES5", - "noImplicitAny": true, - "removeComments": true, - "preserveConstEnums": true, - "outDir": "build/scripts", - "noImplicitUseStrict": true, - "moduleResolution": "Node" - }, - "include": [ "ts/**/*", "src/**/*.d.ts" ], - "exclude": [ "platform/node_modules" ] -} \ No newline at end of file