mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-04-03 11:09:40 -04:00
Initial templates
- First version of raylib templates(WIP).
This commit is contained in:
parent
f880241ee4
commit
47f4a728bf
7
Templates/advance_game/advance_game.cs
Normal file
7
Templates/advance_game/advance_game.cs
Normal file
File diff suppressed because one or more lines are too long
BIN
Templates/advance_game/resources/ambient.ogg
Normal file
BIN
Templates/advance_game/resources/ambient.ogg
Normal file
Binary file not shown.
BIN
Templates/advance_game/resources/coin.wav
Normal file
BIN
Templates/advance_game/resources/coin.wav
Normal file
Binary file not shown.
BIN
Templates/advance_game/resources/mecha.png
Normal file
BIN
Templates/advance_game/resources/mecha.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.3 KiB |
BIN
Templates/advance_game/resources/raylib_logo.png
Normal file
BIN
Templates/advance_game/resources/raylib_logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.7 KiB |
7
Templates/advance_game/screens/screen_ending.cs
Normal file
7
Templates/advance_game/screens/screen_ending.cs
Normal file
@ -0,0 +1,7 @@
|
||||
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;
}
|
||||
}
|
7
Templates/advance_game/screens/screen_gameplay.cs
Normal file
7
Templates/advance_game/screens/screen_gameplay.cs
Normal file
@ -0,0 +1,7 @@
|
||||
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;
}
|
||||
}
|
7
Templates/advance_game/screens/screen_logo.cs
Normal file
7
Templates/advance_game/screens/screen_logo.cs
Normal file
@ -0,0 +1,7 @@
|
||||
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;
}
|
||||
}
|
7
Templates/advance_game/screens/screen_options.cs
Normal file
7
Templates/advance_game/screens/screen_options.cs
Normal file
@ -0,0 +1,7 @@
|
||||
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;
}
|
||||
}
|
7
Templates/advance_game/screens/screen_title.cs
Normal file
7
Templates/advance_game/screens/screen_title.cs
Normal file
@ -0,0 +1,7 @@
|
||||
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;
}
|
||||
}
|
7
Templates/simple_game/simple_game.cs
Normal file
7
Templates/simple_game/simple_game.cs
Normal file
File diff suppressed because one or more lines are too long
7
Templates/standard_game/screens/screen_ending.cs
Normal file
7
Templates/standard_game/screens/screen_ending.cs
Normal file
@ -0,0 +1,7 @@
|
||||
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;
}
|
||||
}
|
7
Templates/standard_game/screens/screen_gameplay.cs
Normal file
7
Templates/standard_game/screens/screen_gameplay.cs
Normal file
@ -0,0 +1,7 @@
|
||||
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;
}
|
||||
}
|
7
Templates/standard_game/screens/screen_logo.cs
Normal file
7
Templates/standard_game/screens/screen_logo.cs
Normal file
@ -0,0 +1,7 @@
|
||||
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;
}
|
||||
}
|
7
Templates/standard_game/screens/screen_options.cs
Normal file
7
Templates/standard_game/screens/screen_options.cs
Normal file
@ -0,0 +1,7 @@
|
||||
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;
}
|
||||
}
|
7
Templates/standard_game/screens/screen_title.cs
Normal file
7
Templates/standard_game/screens/screen_title.cs
Normal file
@ -0,0 +1,7 @@
|
||||
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;
}
|
||||
}
|
7
Templates/standard_game/standard_game.cs
Normal file
7
Templates/standard_game/standard_game.cs
Normal file
File diff suppressed because one or more lines are too long
Loading…
x
Reference in New Issue
Block a user