Commit 1294c380 authored by Fan FEI's avatar Fan FEI

version "2.1"

  add score and time show
parent b3a5282b
...@@ -15,8 +15,7 @@ ...@@ -15,8 +15,7 @@
* *
********************************************************************************************/ ********************************************************************************************/
#include "raylib.h" #include <raylib.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <time.h> #include <time.h>
...@@ -289,7 +288,12 @@ void DrawGame(void) ...@@ -289,7 +288,12 @@ void DrawGame(void)
// Draw fruit to pick // Draw fruit to pick
DrawRectangleV(fruit.position, fruit.size, fruit.color); DrawRectangleV(fruit.position, fruit.size, fruit.color);
// Show time and score
DrawText(TextFormat("TIME : %.1f s", (float)framesCounter/60), SQUARE_SIZE, SQUARE_SIZE, SQUARE_SIZE, DARKGRAY);
DrawText(TextFormat("SCORE: %03d", counterTail), SQUARE_SIZE, SQUARE_SIZE*2, SQUARE_SIZE, DARKGRAY);
// Show pause
if (pause) DrawText("GAME PAUSED", screenWidth/2 - MeasureText("GAME PAUSED", 40)/2, screenHeight/2 - 40, 40, GRAY); if (pause) DrawText("GAME PAUSED", screenWidth/2 - MeasureText("GAME PAUSED", 40)/2, screenHeight/2 - 40, 40, GRAY);
} }
else DrawText("PRESS [ENTER] TO PLAY AGAIN", GetScreenWidth()/2 - MeasureText("PRESS [ENTER] TO PLAY AGAIN", 20)/2, GetScreenHeight()/2 - 50, 20, GRAY); else DrawText("PRESS [ENTER] TO PLAY AGAIN", GetScreenWidth()/2 - MeasureText("PRESS [ENTER] TO PLAY AGAIN", 20)/2, GetScreenHeight()/2 - 50, 20, GRAY);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment