diff --git a/Templates/advance_game/advance_game.cs b/Templates/advance_game/advance_game.cs deleted file mode 100644 index 5f4a3a8..0000000 --- a/Templates/advance_game/advance_game.cs +++ /dev/null @@ -1,7 +0,0 @@ -using Raylib; -using static Raylib.Raylib; - -public partial class Templates -{ - /******************************************************************************************* * * raylib - Advance Game template * * * * * This game has been created using raylib (www.raylib.com) * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) * * Copyright (c) 2014-2018 Ramon Santamaria (@raysan5) * ********************************************************************************************/ //---------------------------------------------------------------------------------- // Global Variables Definition (local to this module) //---------------------------------------------------------------------------------- const int screenWidth = 800; const int screenHeight = 450; // Required variables to manage screen transitions (fade-in, fade-out) static float transAlpha = 0.0f; static bool onTransition = false; static bool transFadeOut = false; static int transFromScreen = -1; static int transToScreen = -1; // NOTE: Some global variables that require to be visible for all screens, // are defined in screens.h (i.e. currentScreen) //---------------------------------------------------------------------------------- // Local Functions Declaration //---------------------------------------------------------------------------------- static void ChangeToScreen(int screen); // No transition effect static void TransitionToScreen(int screen); static void UpdateTransition(); static void DrawTransition(); static void UpdateDrawFrame(); // Update and Draw one frame //---------------------------------------------------------------------------------- // Main entry point //---------------------------------------------------------------------------------- public static void Main() { // Initialization (Note windowTitle is unused on Android) //--------------------------------------------------------- InitWindow(screenWidth, screenHeight, "raylib template - advance game"); // Global data loading (assets that must be available in all screens, i.e. fonts) InitAudioDevice(); font = LoadFont("resources/mecha.png"); music = LoadMusicStream("resources/ambient.ogg"); fxCoin = LoadSound("resources/coin.wav"); SetMusicVolume(music, 1.0f); PlayMusicStream(music); // Setup and Init first screen currentScreen = LOGO; InitLogoScreen(); SetTargetFPS(60); // Set our game to run at 60 frames-per-second //-------------------------------------------------------------------------------------- // Main game loop while (!WindowShouldClose()) // Detect window close button or ESC key { UpdateDrawFrame(); } // De-Initialization //-------------------------------------------------------------------------------------- // Unload current screen data before closing switch (currentScreen) { case LOGO: UnloadLogoScreen(); break; case TITLE: UnloadTitleScreen(); break; case GAMEPLAY: UnloadGameplayScreen(); break; case ENDING: UnloadEndingScreen(); break; default: break; } // Unload all global loaded data (i.e. fonts) here! UnloadFont(font); UnloadMusicStream(music); UnloadSound(fxCoin); CloseAudioDevice(); // Close audio context CloseWindow(); // Close window and OpenGL context //-------------------------------------------------------------------------------------- return 0; } //---------------------------------------------------------------------------------- // Module specific Functions Definition //---------------------------------------------------------------------------------- // Change to next screen, no transition static void ChangeToScreen(int screen) { // Unload current screen switch (currentScreen) { case LOGO: UnloadLogoScreen(); break; case TITLE: UnloadTitleScreen(); break; case GAMEPLAY: UnloadGameplayScreen(); break; case ENDING: UnloadEndingScreen(); break; default: break; } // Init next screen switch (screen) { case LOGO: InitLogoScreen(); break; case TITLE: InitTitleScreen(); break; case GAMEPLAY: InitGameplayScreen(); break; case ENDING: InitEndingScreen(); break; default: break; } currentScreen = screen; } // Define transition to next screen static void TransitionToScreen(int screen) { onTransition = true; transFadeOut = false; transFromScreen = currentScreen; transToScreen = screen; transAlpha = 0.0f; } // Update transition effect static void UpdateTransition() { if (!transFadeOut) { transAlpha += 0.02f; // NOTE: Due to float internal representation, condition jumps on 1.0f instead of 1.05f // For that reason we compare against 1.01f, to avoid last frame loading stop if (transAlpha > 1.01f) { transAlpha = 1.0f; // Unload current screen switch (transFromScreen) { case LOGO: UnloadLogoScreen(); break; case TITLE: UnloadTitleScreen(); break; case OPTIONS: UnloadOptionsScreen(); break; case GAMEPLAY: UnloadGameplayScreen(); break; case ENDING: UnloadEndingScreen(); break; default: break; } // Load next screen switch (transToScreen) { case LOGO: InitLogoScreen(); break; case TITLE: InitTitleScreen(); break; case GAMEPLAY: InitGameplayScreen(); break; case ENDING: InitEndingScreen(); break; default: break; } currentScreen = transToScreen; // Activate fade out effect to next loaded screen transFadeOut = true; } } else // Transition fade out logic { transAlpha -= 0.02f; if (transAlpha < -0.01f) { transAlpha = 0.0f; transFadeOut = false; onTransition = false; transFromScreen = -1; transToScreen = -1; } } } // Draw transition effect (full-screen rectangle) static void DrawTransition() { DrawRectangle(0, 0, GetScreenWidth(), GetScreenHeight(), Fade(BLACK, transAlpha)); } // Update and draw game frame static void UpdateDrawFrame() { // Update //---------------------------------------------------------------------------------- UpdateMusicStream(music); // NOTE: IntPtr keeps playing between screens if (!onTransition) { switch(currentScreen) { case LOGO: { UpdateLogoScreen(); if (FinishLogoScreen()) TransitionToScreen(TITLE); } break; case TITLE: { UpdateTitleScreen(); if (FinishTitleScreen() == 1) TransitionToScreen(OPTIONS); else if (FinishTitleScreen() == 2) TransitionToScreen(GAMEPLAY); } break; case OPTIONS: { UpdateOptionsScreen(); if (FinishOptionsScreen()) TransitionToScreen(TITLE); } break; case GAMEPLAY: { UpdateGameplayScreen(); if (FinishGameplayScreen() == 1) TransitionToScreen(ENDING); //else if (FinishGameplayScreen() == 2) TransitionToScreen(TITLE); } break; case ENDING: { UpdateEndingScreen(); if (FinishEndingScreen() == 1) TransitionToScreen(TITLE); } break; default: break; } } else UpdateTransition(); // Update transition (fade-in, fade-out) //---------------------------------------------------------------------------------- // Draw //---------------------------------------------------------------------------------- BeginDrawing(); ClearBackground(RAYWHITE); switch(currentScreen) { case LOGO: DrawLogoScreen(); break; case TITLE: DrawTitleScreen(); break; case OPTIONS: DrawOptionsScreen(); break; case GAMEPLAY: DrawGameplayScreen(); break; case ENDING: DrawEndingScreen(); break; default: break; } // Draw full screen rectangle in front of everything if (onTransition) DrawTransition(); //DrawFPS(10, 10); EndDrawing(); //---------------------------------------------------------------------------------- } -} diff --git a/Templates/advance_game/resources/ambient.ogg b/Templates/advance_game/resources/ambient.ogg deleted file mode 100644 index af7f836..0000000 Binary files a/Templates/advance_game/resources/ambient.ogg and /dev/null differ diff --git a/Templates/advance_game/resources/coin.wav b/Templates/advance_game/resources/coin.wav deleted file mode 100644 index 6684ffc..0000000 Binary files a/Templates/advance_game/resources/coin.wav and /dev/null differ diff --git a/Templates/advance_game/resources/mecha.png b/Templates/advance_game/resources/mecha.png deleted file mode 100644 index 8022d18..0000000 Binary files a/Templates/advance_game/resources/mecha.png and /dev/null differ diff --git a/Templates/advance_game/resources/raylib_logo.png b/Templates/advance_game/resources/raylib_logo.png deleted file mode 100644 index 6654562..0000000 Binary files a/Templates/advance_game/resources/raylib_logo.png and /dev/null differ diff --git a/Templates/advance_game/screens/screen_ending.cs b/Templates/advance_game/screens/screen_ending.cs deleted file mode 100644 index 0ba3d50..0000000 --- a/Templates/advance_game/screens/screen_ending.cs +++ /dev/null @@ -1,7 +0,0 @@ -using Raylib; -using static Raylib.Raylib; - -public partial class Templates -{ - /********************************************************************************************** * * raylib - Advance Game template * * Ending Screen Functions Definitions (Init, Update, Draw, Unload) * * Copyright (c) 2014-2018 Ramon Santamaria (@raysan5) * * This software is provided "as-is", without any express or implied warranty. In no event * will the authors be held liable for any damages arising from the use of this software. * * Permission is granted to anyone to use this software for any purpose, including commercial * applications, and to alter it and redistribute it freely, subject to the following restrictions: * * 1. The origin of this software must not be misrepresented; you must not claim that you * wrote the original software. If you use this software in a product, an acknowledgment * in the product documentation would be appreciated but is not required. * * 2. Altered source versions must be plainly marked as such, and must not be misrepresented * as being the original software. * * 3. This notice may not be removed or altered from any source distribution. * **********************************************************************************************/ //---------------------------------------------------------------------------------- // Global Variables Definition (local to this module) //---------------------------------------------------------------------------------- // Ending screen global variables static int framesCounter; static int finishScreen; //---------------------------------------------------------------------------------- // Ending Screen Functions Definition //---------------------------------------------------------------------------------- // Ending Screen Initialization logic void InitEndingScreen() { // TODO: Initialize ENDING screen variables here! framesCounter = 0; finishScreen = 0; } // Ending Screen Update logic void UpdateEndingScreen() { // TODO: Update ENDING screen variables here! // Press enter or tap to return to TITLE screen if (IsKeyPressed((int)Key.ENTER) || IsGestureDetected(GESTURE_TAP)) { finishScreen = 1; PlaySound(fxCoin); } } // Ending Screen Draw logic void DrawEndingScreen() { // TODO: Draw ENDING screen here! DrawRectangle(0, 0, GetScreenWidth(), GetScreenHeight(), BLUE); DrawTextEx(font, "ENDING SCREEN", new Vector2( 20, 10 );, font.baseSize*3, 4, DARKBLUE); DrawText("PRESS ENTER or TAP to RETURN to TITLE SCREEN", 120, 220, 20, DARKBLUE); } // Ending Screen Unload logic void UnloadEndingScreen() { // TODO: Unload ENDING screen variables here! } // Ending Screen should finish? int FinishEndingScreen() { return finishScreen; } -} diff --git a/Templates/advance_game/screens/screen_gameplay.cs b/Templates/advance_game/screens/screen_gameplay.cs deleted file mode 100644 index c1b6df6..0000000 --- a/Templates/advance_game/screens/screen_gameplay.cs +++ /dev/null @@ -1,7 +0,0 @@ -using Raylib; -using static Raylib.Raylib; - -public partial class Templates -{ - /********************************************************************************************** * * raylib - Advance Game template * * Gameplay Screen Functions Definitions (Init, Update, Draw, Unload) * * Copyright (c) 2014-2018 Ramon Santamaria (@raysan5) * * This software is provided "as-is", without any express or implied warranty. In no event * will the authors be held liable for any damages arising from the use of this software. * * Permission is granted to anyone to use this software for any purpose, including commercial * applications, and to alter it and redistribute it freely, subject to the following restrictions: * * 1. The origin of this software must not be misrepresented; you must not claim that you * wrote the original software. If you use this software in a product, an acknowledgment * in the product documentation would be appreciated but is not required. * * 2. Altered source versions must be plainly marked as such, and must not be misrepresented * as being the original software. * * 3. This notice may not be removed or altered from any source distribution. * **********************************************************************************************/ //---------------------------------------------------------------------------------- // Global Variables Definition (local to this module) //---------------------------------------------------------------------------------- // Gameplay screen global variables static int framesCounter; static int finishScreen; //---------------------------------------------------------------------------------- // Gameplay Screen Functions Definition //---------------------------------------------------------------------------------- // Gameplay Screen Initialization logic void InitGameplayScreen() { // TODO: Initialize GAMEPLAY screen variables here! framesCounter = 0; finishScreen = 0; } // Gameplay Screen Update logic void UpdateGameplayScreen() { // TODO: Update GAMEPLAY screen variables here! // Press enter or tap to change to ENDING screen if (IsKeyPressed((int)Key.ENTER) || IsGestureDetected(GESTURE_TAP)) { finishScreen = 1; PlaySound(fxCoin); } } // Gameplay Screen Draw logic void DrawGameplayScreen() { // TODO: Draw GAMEPLAY screen here! DrawRectangle(0, 0, GetScreenWidth(), GetScreenHeight(), PURPLE); DrawTextEx(font, "GAMEPLAY SCREEN", new Vector2( 20, 10 );, font.baseSize*3, 4, MAROON); DrawText("PRESS ENTER or TAP to JUMP to ENDING SCREEN", 130, 220, 20, MAROON); } // Gameplay Screen Unload logic void UnloadGameplayScreen() { // TODO: Unload GAMEPLAY screen variables here! } // Gameplay Screen should finish? int FinishGameplayScreen() { return finishScreen; } -} diff --git a/Templates/advance_game/screens/screen_logo.cs b/Templates/advance_game/screens/screen_logo.cs deleted file mode 100644 index 8f3a945..0000000 --- a/Templates/advance_game/screens/screen_logo.cs +++ /dev/null @@ -1,7 +0,0 @@ -using Raylib; -using static Raylib.Raylib; - -public partial class Templates -{ - /********************************************************************************************** * * raylib - Advance Game template * * Logo Screen Functions Definitions (Init, Update, Draw, Unload) * * Copyright (c) 2014-2018 Ramon Santamaria (@raysan5) * * This software is provided "as-is", without any express or implied warranty. In no event * will the authors be held liable for any damages arising from the use of this software. * * Permission is granted to anyone to use this software for any purpose, including commercial * applications, and to alter it and redistribute it freely, subject to the following restrictions: * * 1. The origin of this software must not be misrepresented; you must not claim that you * wrote the original software. If you use this software in a product, an acknowledgment * in the product documentation would be appreciated but is not required. * * 2. Altered source versions must be plainly marked as such, and must not be misrepresented * as being the original software. * * 3. This notice may not be removed or altered from any source distribution. * **********************************************************************************************/ //---------------------------------------------------------------------------------- // Global Variables Definition (local to this module) //---------------------------------------------------------------------------------- // Logo screen global variables static int framesCounter; static int finishScreen; static Texture2D logo; //---------------------------------------------------------------------------------- // Logo Screen Functions Definition //---------------------------------------------------------------------------------- // Logo Screen Initialization logic void InitLogoScreen() { // TODO: Initialize LOGO screen variables here! framesCounter = 0; finishScreen = 0; logo = LoadTexture("resources/raylib_logo.png"); } // Logo Screen Update logic void UpdateLogoScreen() { // TODO: Update LOGO screen variables here! framesCounter++; // Count frames // Wait for 2 seconds (120 frames) before jumping to TITLE screen if (framesCounter > 120) { finishScreen = true; } } // Logo Screen Draw logic void DrawLogoScreen() { // TODO: Draw LOGO screen here! DrawTextEx(font, "LOGO SCREEN", new Vector2( 20, 10 );, font.baseSize*3, 4, GRAY); DrawText("WAIT for 2 SECONDS...", 290, 400, 20, GRAY); DrawTexture(logo, GetScreenWidth()/2 - logo.width/2, 100, WHITE); } // Logo Screen Unload logic void UnloadLogoScreen() { // TODO: Unload LOGO screen variables here! UnloadTexture(logo); } // Logo Screen should finish? int FinishLogoScreen() { return finishScreen; } -} diff --git a/Templates/advance_game/screens/screen_options.cs b/Templates/advance_game/screens/screen_options.cs deleted file mode 100644 index 919708d..0000000 --- a/Templates/advance_game/screens/screen_options.cs +++ /dev/null @@ -1,7 +0,0 @@ -using Raylib; -using static Raylib.Raylib; - -public partial class Templates -{ - /********************************************************************************************** * * raylib - Advance Game template * * Options Screen Functions Definitions (Init, Update, Draw, Unload) * * Copyright (c) 2014-2018 Ramon Santamaria (@raysan5) * * This software is provided "as-is", without any express or implied warranty. In no event * will the authors be held liable for any damages arising from the use of this software. * * Permission is granted to anyone to use this software for any purpose, including commercial * applications, and to alter it and redistribute it freely, subject to the following restrictions: * * 1. The origin of this software must not be misrepresented; you must not claim that you * wrote the original software. If you use this software in a product, an acknowledgment * in the product documentation would be appreciated but is not required. * * 2. Altered source versions must be plainly marked as such, and must not be misrepresented * as being the original software. * * 3. This notice may not be removed or altered from any source distribution. * **********************************************************************************************/ //---------------------------------------------------------------------------------- // Global Variables Definition (local to this module) //---------------------------------------------------------------------------------- // Options screen global variables static int framesCounter; static int finishScreen; //---------------------------------------------------------------------------------- // Options Screen Functions Definition //---------------------------------------------------------------------------------- // Options Screen Initialization logic void InitOptionsScreen() { // TODO: Initialize OPTIONS screen variables here! framesCounter = 0; finishScreen = 0; } // Options Screen Update logic void UpdateOptionsScreen() { // TODO: Update OPTIONS screen variables here! } // Options Screen Draw logic void DrawOptionsScreen() { // TODO: Draw OPTIONS screen here! } // Options Screen Unload logic void UnloadOptionsScreen() { // TODO: Unload OPTIONS screen variables here! } // Options Screen should finish? int FinishOptionsScreen() { return finishScreen; } -} diff --git a/Templates/advance_game/screens/screen_title.cs b/Templates/advance_game/screens/screen_title.cs deleted file mode 100644 index ce7665c..0000000 --- a/Templates/advance_game/screens/screen_title.cs +++ /dev/null @@ -1,7 +0,0 @@ -using Raylib; -using static Raylib.Raylib; - -public partial class Templates -{ - /********************************************************************************************** * * raylib - Advance Game template * * Title Screen Functions Definitions (Init, Update, Draw, Unload) * * Copyright (c) 2014-2018 Ramon Santamaria (@raysan5) * * This software is provided "as-is", without any express or implied warranty. In no event * will the authors be held liable for any damages arising from the use of this software. * * Permission is granted to anyone to use this software for any purpose, including commercial * applications, and to alter it and redistribute it freely, subject to the following restrictions: * * 1. The origin of this software must not be misrepresented; you must not claim that you * wrote the original software. If you use this software in a product, an acknowledgment * in the product documentation would be appreciated but is not required. * * 2. Altered source versions must be plainly marked as such, and must not be misrepresented * as being the original software. * * 3. This notice may not be removed or altered from any source distribution. * **********************************************************************************************/ //---------------------------------------------------------------------------------- // Global Variables Definition (local to this module) //---------------------------------------------------------------------------------- // Title screen global variables static int framesCounter; static int finishScreen; //---------------------------------------------------------------------------------- // Title Screen Functions Definition //---------------------------------------------------------------------------------- // Title Screen Initialization logic void InitTitleScreen() { // TODO: Initialize TITLE screen variables here! framesCounter = 0; finishScreen = 0; } // Title Screen Update logic void UpdateTitleScreen() { // TODO: Update TITLE screen variables here! // Press enter or tap to change to GAMEPLAY screen if (IsKeyPressed((int)Key.ENTER) || IsGestureDetected(GESTURE_TAP)) { //finishScreen = 1; // OPTIONS finishScreen = 2; // GAMEPLAY PlaySound(fxCoin); } } // Title Screen Draw logic void DrawTitleScreen() { // TODO: Draw TITLE screen here! DrawRectangle(0, 0, GetScreenWidth(), GetScreenHeight(), GREEN); DrawTextEx(font, "TITLE SCREEN", new Vector2( 20, 10 );, font.baseSize*3, 4, DARKGREEN); DrawText("PRESS ENTER or TAP to JUMP to GAMEPLAY SCREEN", 120, 220, 20, DARKGREEN); } // Title Screen Unload logic void UnloadTitleScreen() { // TODO: Unload TITLE screen variables here! } // Title Screen should finish? int FinishTitleScreen() { return finishScreen; } -} diff --git a/Templates/simple_game/simple_game.cs b/Templates/simple_game/simple_game.cs deleted file mode 100644 index ee89a77..0000000 --- a/Templates/simple_game/simple_game.cs +++ /dev/null @@ -1,7 +0,0 @@ -using Raylib; -using static Raylib.Raylib; - -public partial class Templates -{ - /******************************************************************************************* * * raylib - Simple Game template * * * * * This game has been created using raylib (www.raylib.com) * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) * * Copyright (c) 2014-2018 Ramon Santamaria (@raysan5) * ********************************************************************************************/ //---------------------------------------------------------------------------------- // Types and Structures Definition //---------------------------------------------------------------------------------- typedef enum GameScreen { LOGO = 0, TITLE, GAMEPLAY, ENDING } GameScreen; //---------------------------------------------------------------------------------- // Main entry point //---------------------------------------------------------------------------------- public static void Main() { // Initialization (Note windowTitle is unused on Android) //-------------------------------------------------------------------------------------- const int screenWidth = 800; const int screenHeight = 450; InitWindow(screenWidth, screenHeight, "raylib template - simple game"); GameScreen currentScreen = LOGO; // TODO: Initialize all required variables and load all required data here! int framesCounter = 0; // Useful to count frames SetTargetFPS(60); // Set desired framerate (frames-per-second) //-------------------------------------------------------------------------------------- // Main game loop while (!WindowShouldClose()) // Detect window close button or ESC key { // Update //---------------------------------------------------------------------------------- switch(currentScreen) { case LOGO: { // TODO: Update LOGO screen variables here! framesCounter++; // Count frames // Wait for 2 seconds (120 frames) before jumping to TITLE screen if (framesCounter > 120) { currentScreen = TITLE; } } break; case TITLE: { // TODO: Update TITLE screen variables here! // Press enter to change to GAMEPLAY screen if (IsKeyPressed((int)Key.ENTER) || IsGestureDetected(GESTURE_TAP)) { currentScreen = GAMEPLAY; } } break; case GAMEPLAY: { // TODO: Update GAMEPLAY screen variables here! // Press enter to change to ENDING screen if (IsKeyPressed((int)Key.ENTER) || IsGestureDetected(GESTURE_TAP)) { currentScreen = ENDING; } } break; case ENDING: { // TODO: Update ENDING screen variables here! // Press enter to return to TITLE screen if (IsKeyPressed((int)Key.ENTER) || IsGestureDetected(GESTURE_TAP)) { currentScreen = TITLE; } } break; default: break; } //---------------------------------------------------------------------------------- // Draw //---------------------------------------------------------------------------------- BeginDrawing(); ClearBackground(RAYWHITE); switch(currentScreen) { case LOGO: { // TODO: Draw LOGO screen here! DrawText("LOGO SCREEN", 20, 20, 40, LIGHTGRAY); DrawText("WAIT for 2 SECONDS...", 290, 220, 20, GRAY); } break; case TITLE: { // TODO: Draw TITLE screen here! DrawRectangle(0, 0, screenWidth, screenHeight, GREEN); DrawText("TITLE SCREEN", 20, 20, 40, DARKGREEN); DrawText("PRESS ENTER or TAP to JUMP to GAMEPLAY SCREEN", 120, 220, 20, DARKGREEN); } break; case GAMEPLAY: { // TODO: Draw GAMEPLAY screen here! DrawRectangle(0, 0, screenWidth, screenHeight, PURPLE); DrawText("GAMEPLAY SCREEN", 20, 20, 40, MAROON); DrawText("PRESS ENTER or TAP to JUMP to ENDING SCREEN", 130, 220, 20, MAROON); } break; case ENDING: { // TODO: Draw ENDING screen here! DrawRectangle(0, 0, screenWidth, screenHeight, BLUE); DrawText("ENDING SCREEN", 20, 20, 40, DARKBLUE); DrawText("PRESS ENTER or TAP to RETURN to TITLE SCREEN", 120, 220, 20, DARKBLUE); } break; default: break; } EndDrawing(); //---------------------------------------------------------------------------------- } // De-Initialization //-------------------------------------------------------------------------------------- // TODO: Unload all loaded data (textures, fonts, audio) here! CloseWindow(); // Close window and OpenGL context //-------------------------------------------------------------------------------------- return 0; } -} diff --git a/Templates/standard_game/screens/screen_ending.cs b/Templates/standard_game/screens/screen_ending.cs deleted file mode 100644 index e534d8f..0000000 --- a/Templates/standard_game/screens/screen_ending.cs +++ /dev/null @@ -1,7 +0,0 @@ -using Raylib; -using static Raylib.Raylib; - -public partial class Templates -{ - /********************************************************************************************** * * raylib - Standard Game template * * Ending Screen Functions Definitions (Init, Update, Draw, Unload) * * Copyright (c) 2014-2018 Ramon Santamaria (@raysan5) * * This software is provided "as-is", without any express or implied warranty. In no event * will the authors be held liable for any damages arising from the use of this software. * * Permission is granted to anyone to use this software for any purpose, including commercial * applications, and to alter it and redistribute it freely, subject to the following restrictions: * * 1. The origin of this software must not be misrepresented; you must not claim that you * wrote the original software. If you use this software in a product, an acknowledgment * in the product documentation would be appreciated but is not required. * * 2. Altered source versions must be plainly marked as such, and must not be misrepresented * as being the original software. * * 3. This notice may not be removed or altered from any source distribution. * **********************************************************************************************/ //---------------------------------------------------------------------------------- // Global Variables Definition (local to this module) //---------------------------------------------------------------------------------- // Ending screen global variables static int framesCounter; static int finishScreen; //---------------------------------------------------------------------------------- // Ending Screen Functions Definition //---------------------------------------------------------------------------------- // Ending Screen Initialization logic void InitEndingScreen() { // TODO: Initialize ENDING screen variables here! framesCounter = 0; finishScreen = 0; } // Ending Screen Update logic void UpdateEndingScreen() { // TODO: Update ENDING screen variables here! // Press enter or tap to return to TITLE screen if (IsKeyPressed((int)Key.ENTER) || IsGestureDetected(GESTURE_TAP)) { finishScreen = 1; } } // Ending Screen Draw logic void DrawEndingScreen() { // TODO: Draw ENDING screen here! DrawRectangle(0, 0, GetScreenWidth(), GetScreenHeight(), BLUE); DrawText("ENDING SCREEN", 20, 20, 40, DARKBLUE); DrawText("PRESS ENTER to RETURN to TITLE SCREEN", 120, 220, 20, DARKBLUE); } // Ending Screen Unload logic void UnloadEndingScreen() { // TODO: Unload ENDING screen variables here! } // Ending Screen should finish? int FinishEndingScreen() { return finishScreen; } -} diff --git a/Templates/standard_game/screens/screen_gameplay.cs b/Templates/standard_game/screens/screen_gameplay.cs deleted file mode 100644 index 73b8b16..0000000 --- a/Templates/standard_game/screens/screen_gameplay.cs +++ /dev/null @@ -1,7 +0,0 @@ -using Raylib; -using static Raylib.Raylib; - -public partial class Templates -{ - /********************************************************************************************** * * raylib - Standard Game template * * Gameplay Screen Functions Definitions (Init, Update, Draw, Unload) * * Copyright (c) 2014-2018 Ramon Santamaria (@raysan5) * * This software is provided "as-is", without any express or implied warranty. In no event * will the authors be held liable for any damages arising from the use of this software. * * Permission is granted to anyone to use this software for any purpose, including commercial * applications, and to alter it and redistribute it freely, subject to the following restrictions: * * 1. The origin of this software must not be misrepresented; you must not claim that you * wrote the original software. If you use this software in a product, an acknowledgment * in the product documentation would be appreciated but is not required. * * 2. Altered source versions must be plainly marked as such, and must not be misrepresented * as being the original software. * * 3. This notice may not be removed or altered from any source distribution. * **********************************************************************************************/ //---------------------------------------------------------------------------------- // Global Variables Definition (local to this module) //---------------------------------------------------------------------------------- // Gameplay screen global variables static int framesCounter; static int finishScreen; //---------------------------------------------------------------------------------- // Gameplay Screen Functions Definition //---------------------------------------------------------------------------------- // Gameplay Screen Initialization logic void InitGameplayScreen() { // TODO: Initialize GAMEPLAY screen variables here! framesCounter = 0; finishScreen = 0; } // Gameplay Screen Update logic void UpdateGameplayScreen() { // TODO: Update GAMEPLAY screen variables here! // Press enter or tap to change to ENDING screen if (IsKeyPressed((int)Key.ENTER) || IsGestureDetected(GESTURE_TAP)) { finishScreen = 1; } } // Gameplay Screen Draw logic void DrawGameplayScreen() { // TODO: Draw GAMEPLAY screen here! DrawRectangle(0, 0, GetScreenWidth(), GetScreenHeight(), PURPLE); DrawText("GAMEPLAY SCREEN", 20, 20, 40, MAROON); DrawText("PRESS ENTER or TAP to JUMP to ENDING SCREEN", 130, 220, 20, MAROON); } // Gameplay Screen Unload logic void UnloadGameplayScreen() { // TODO: Unload GAMEPLAY screen variables here! } // Gameplay Screen should finish? int FinishGameplayScreen() { return finishScreen; } -} diff --git a/Templates/standard_game/screens/screen_logo.cs b/Templates/standard_game/screens/screen_logo.cs deleted file mode 100644 index 7886c4d..0000000 --- a/Templates/standard_game/screens/screen_logo.cs +++ /dev/null @@ -1,7 +0,0 @@ -using Raylib; -using static Raylib.Raylib; - -public partial class Templates -{ - /********************************************************************************************** * * raylib - Standard Game template * * Logo Screen Functions Definitions (Init, Update, Draw, Unload) * * Copyright (c) 2014-2018 Ramon Santamaria (@raysan5) * * This software is provided "as-is", without any express or implied warranty. In no event * will the authors be held liable for any damages arising from the use of this software. * * Permission is granted to anyone to use this software for any purpose, including commercial * applications, and to alter it and redistribute it freely, subject to the following restrictions: * * 1. The origin of this software must not be misrepresented; you must not claim that you * wrote the original software. If you use this software in a product, an acknowledgment * in the product documentation would be appreciated but is not required. * * 2. Altered source versions must be plainly marked as such, and must not be misrepresented * as being the original software. * * 3. This notice may not be removed or altered from any source distribution. * **********************************************************************************************/ //---------------------------------------------------------------------------------- // Global Variables Definition (local to this module) //---------------------------------------------------------------------------------- // Logo screen global variables static int framesCounter; static int finishScreen; //---------------------------------------------------------------------------------- // Logo Screen Functions Definition //---------------------------------------------------------------------------------- // Logo Screen Initialization logic void InitLogoScreen() { // TODO: Initialize LOGO screen variables here! framesCounter = 0; finishScreen = 0; } // Logo Screen Update logic void UpdateLogoScreen() { // TODO: Update LOGO screen variables here! framesCounter++; // Count frames // Wait for 2 seconds (120 frames) before jumping to TITLE screen if (framesCounter > 120) { finishScreen = true; } } // Logo Screen Draw logic void DrawLogoScreen() { // TODO: Draw LOGO screen here! DrawText("LOGO SCREEN", 20, 20, 40, LIGHTGRAY); DrawText("WAIT for 2 SECONDS...", 290, 220, 20, GRAY); } // Logo Screen Unload logic void UnloadLogoScreen() { // TODO: Unload LOGO screen variables here! } // Logo Screen should finish? int FinishLogoScreen() { return finishScreen; } -} diff --git a/Templates/standard_game/screens/screen_options.cs b/Templates/standard_game/screens/screen_options.cs deleted file mode 100644 index ad0623f..0000000 --- a/Templates/standard_game/screens/screen_options.cs +++ /dev/null @@ -1,7 +0,0 @@ -using Raylib; -using static Raylib.Raylib; - -public partial class Templates -{ - /********************************************************************************************** * * raylib - Standard Game template * * Options Screen Functions Definitions (Init, Update, Draw, Unload) * * Copyright (c) 2014-2018 Ramon Santamaria (@raysan5) * * This software is provided "as-is", without any express or implied warranty. In no event * will the authors be held liable for any damages arising from the use of this software. * * Permission is granted to anyone to use this software for any purpose, including commercial * applications, and to alter it and redistribute it freely, subject to the following restrictions: * * 1. The origin of this software must not be misrepresented; you must not claim that you * wrote the original software. If you use this software in a product, an acknowledgment * in the product documentation would be appreciated but is not required. * * 2. Altered source versions must be plainly marked as such, and must not be misrepresented * as being the original software. * * 3. This notice may not be removed or altered from any source distribution. * **********************************************************************************************/ //---------------------------------------------------------------------------------- // Global Variables Definition (local to this module) //---------------------------------------------------------------------------------- // Options screen global variables static int framesCounter; static int finishScreen; //---------------------------------------------------------------------------------- // Options Screen Functions Definition //---------------------------------------------------------------------------------- // Options Screen Initialization logic void InitOptionsScreen() { // TODO: Initialize OPTIONS screen variables here! framesCounter = 0; finishScreen = 0; } // Options Screen Update logic void UpdateOptionsScreen() { // TODO: Update OPTIONS screen variables here! } // Options Screen Draw logic void DrawOptionsScreen() { // TODO: Draw OPTIONS screen here! } // Options Screen Unload logic void UnloadOptionsScreen() { // TODO: Unload OPTIONS screen variables here! } // Options Screen should finish? int FinishOptionsScreen() { return finishScreen; } -} diff --git a/Templates/standard_game/screens/screen_title.cs b/Templates/standard_game/screens/screen_title.cs deleted file mode 100644 index 4478064..0000000 --- a/Templates/standard_game/screens/screen_title.cs +++ /dev/null @@ -1,7 +0,0 @@ -using Raylib; -using static Raylib.Raylib; - -public partial class Templates -{ - /********************************************************************************************** * * raylib - Standard Game template * * Title Screen Functions Definitions (Init, Update, Draw, Unload) * * Copyright (c) 2014-2018 Ramon Santamaria (@raysan5) * * This software is provided "as-is", without any express or implied warranty. In no event * will the authors be held liable for any damages arising from the use of this software. * * Permission is granted to anyone to use this software for any purpose, including commercial * applications, and to alter it and redistribute it freely, subject to the following restrictions: * * 1. The origin of this software must not be misrepresented; you must not claim that you * wrote the original software. If you use this software in a product, an acknowledgment * in the product documentation would be appreciated but is not required. * * 2. Altered source versions must be plainly marked as such, and must not be misrepresented * as being the original software. * * 3. This notice may not be removed or altered from any source distribution. * **********************************************************************************************/ //---------------------------------------------------------------------------------- // Global Variables Definition (local to this module) //---------------------------------------------------------------------------------- // Title screen global variables static int framesCounter; static int finishScreen; //---------------------------------------------------------------------------------- // Title Screen Functions Definition //---------------------------------------------------------------------------------- // Title Screen Initialization logic void InitTitleScreen() { // TODO: Initialize TITLE screen variables here! framesCounter = 0; finishScreen = 0; } // Title Screen Update logic void UpdateTitleScreen() { // TODO: Update TITLE screen variables here! // Press enter or tap to change to GAMEPLAY screen if (IsKeyPressed((int)Key.ENTER) || IsGestureDetected(GESTURE_TAP)) { //finishScreen = 1; // OPTIONS finishScreen = 2; // GAMEPLAY } } // Title Screen Draw logic void DrawTitleScreen() { // TODO: Draw TITLE screen here! DrawRectangle(0, 0, GetScreenWidth(), GetScreenHeight(), GREEN); DrawText("TITLE SCREEN", 20, 20, 40, DARKGREEN); DrawText("PRESS ENTER or TAP to JUMP to GAMEPLAY SCREEN", 120, 220, 20, DARKGREEN); } // Title Screen Unload logic void UnloadTitleScreen() { // TODO: Unload TITLE screen variables here! } // Title Screen should finish? int FinishTitleScreen() { return finishScreen; } -} diff --git a/Templates/standard_game/standard_game.cs b/Templates/standard_game/standard_game.cs deleted file mode 100644 index cc244b8..0000000 --- a/Templates/standard_game/standard_game.cs +++ /dev/null @@ -1,7 +0,0 @@ -using Raylib; -using static Raylib.Raylib; - -public partial class Templates -{ - /******************************************************************************************* * * raylib - Standard Game template * * * * * This game has been created using raylib (www.raylib.com) * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) * * Copyright (c) 2014-2018 Ramon Santamaria (@raysan5) * ********************************************************************************************/ //---------------------------------------------------------------------------------- // Main entry point //---------------------------------------------------------------------------------- public static void Main() { // Initialization (Note windowTitle is unused on Android) //--------------------------------------------------------- const int screenWidth = 800; const int screenHeight = 450; InitWindow(screenWidth, screenHeight, "raylib template - standard game"); // TODO: Load global data here (assets that must be available in all screens, i.e. fonts) // Define and init first screen currentScreen = LOGO; // NOTE: currentScreen is defined in screens.h as a global variable InitLogoScreen(); SetTargetFPS(60); //---------------------------------------------------------- // Main game loop while (!WindowShouldClose()) // Detect window close button or ESC key { // Update //---------------------------------------------------------------------------------- switch(currentScreen) { case LOGO: { UpdateLogoScreen(); if (FinishLogoScreen()) { UnloadLogoScreen(); currentScreen = TITLE; InitTitleScreen(); } } break; case TITLE: { UpdateTitleScreen(); // NOTE: FinishTitleScreen() return an int defining the screen to jump to if (FinishTitleScreen() == 1) { UnloadTitleScreen(); currentScreen = OPTIONS; InitOptionsScreen(); } else if (FinishTitleScreen() == 2) { UnloadTitleScreen(); currentScreen = GAMEPLAY; InitGameplayScreen(); } } break; case OPTIONS: { UpdateOptionsScreen(); if (FinishOptionsScreen()) { UnloadOptionsScreen(); currentScreen = TITLE; InitTitleScreen(); } } break; case GAMEPLAY: { UpdateGameplayScreen(); if (FinishGameplayScreen()) { UnloadGameplayScreen(); currentScreen = ENDING; InitEndingScreen(); } } break; case ENDING: { UpdateEndingScreen(); if (FinishEndingScreen()) { UnloadEndingScreen(); currentScreen = TITLE; InitTitleScreen(); } } break; default: break; } //---------------------------------------------------------------------------------- // Draw //---------------------------------------------------------------------------------- BeginDrawing(); ClearBackground(RAYWHITE); switch(currentScreen) { case LOGO: DrawLogoScreen(); break; case TITLE: DrawTitleScreen(); break; case OPTIONS: DrawOptionsScreen(); break; case GAMEPLAY: DrawGameplayScreen(); break; case ENDING: DrawEndingScreen(); break; default: break; } //DrawFPS(10, 10); EndDrawing(); //---------------------------------------------------------------------------------- } // De-Initialization //-------------------------------------------------------------------------------------- // TODO: Unload all global loaded data (i.e. fonts) here! CloseWindow(); // Close window and OpenGL context //-------------------------------------------------------------------------------------- return 0; } -}