From 40b0feb0a97293866911eb9aab4cb1f495315dc8 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Wed, 8 May 2024 13:18:51 +0530 Subject: Added some more details to the side screen --- src/main.cpp | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'src/main.cpp') diff --git a/src/main.cpp b/src/main.cpp index a8fe5f0..a43c68e 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -374,16 +374,21 @@ int main(void) BeginDrawing(); ClearBackground(BLACK); state.draw_grid(); - DrawText("TIME", 0, 0, 25, YELLOW); DrawText( - Time(chrono::duration_cast(Clock::now() - beg).count()) + Time(chrono::duration_cast(Clock::now() - time_start) + .count()) .to_str() .c_str(), - 0, 25, 25, YELLOW); + 0, 0, 25, YELLOW); std::stringstream ss; ss << "Score: "; ss << state.player.points.size() - 1; + DrawText(ss.str().c_str(), 0, 25, 20, YELLOW); + + ss.str(""); + ss << "Next: "; + ss << fruit_delta(state.player.points.size()); DrawText(ss.str().c_str(), 0, 50, 20, YELLOW); EndDrawing(); -- cgit v1.2.3-13-gbd6f