Advertisement
Guest User

Game code

a guest
Apr 15th, 2024
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.84 KB | None | 0 0
  1.  
  2. struct AnimData
  3. {
  4. //compound data types
  5. Rectangle rec; //The sprite sheet layout?
  6. Vector2 pos;// The positing in the game's window
  7. int frame;
  8. float updatetime;
  9. float runningtime;
  10.  
  11. //Custom variables in a struct are called members
  12. };
  13.  
  14. bool isOnGround(AnimData data, int WindowHeight)
  15. {
  16. return data.pos.y >= WindowHeight - data.rec.height;
  17. }
  18.  
  19. AnimData UpdateAnimData (AnimData Data, float Deltatime, int maxFrame)
  20. {
  21. //update running time
  22. Data.runningtime += Deltatime;
  23.  
  24. //Check to see if running time is great or equal then update time
  25. if (Data.runningtime >= Data.updatetime)
  26. {
  27. Data.runningtime = 0.0;
  28.  
  29. //Update animation frame
  30. Data.rec.x = Data.frame * Data.rec.width;
  31. Data.frame++;
  32. if(Data.frame > maxFrame)
  33. {
  34. Data.frame = 0;
  35. }
  36. }
  37. return Data;
  38. }
  39.  
  40. int main()
  41. {
  42.  
  43. //creates an array, of 4 different values starting at 0
  44. double damage [4];
  45. //initilizing each each element with its value
  46. damage [0] = 20.0;
  47. damage [1] = 16.5;
  48. damage [2] = 14.0;
  49. damage [3] = 11.7;
  50.  
  51. //Size of the window for the game
  52. int WindowDim [2];
  53. WindowDim [0] = 950;//Height
  54. WindowDim [1] = 1000;//Width
  55.  
  56. //Creating window size
  57. //const makes the variable impossible to change
  58. //const int HeightW {1000};
  59. //const int WidthW {950};
  60.  
  61. //Gravity by acceleration based on ((pixles/second)second)
  62. const int Gravity {1'212};
  63.  
  64. InitWindow(WindowDim[0],WindowDim[1],"Run,run, run as fast as you can");
  65.  
  66. //Animation Frame Tracker
  67. // int FrameTracker {0};
  68.  
  69. AnimData scarfyData;
  70.  
  71.  
  72.  
  73.  
  74. //Custom Variable from raylib. Compound data type
  75. //Loading scarfy variables
  76. Texture2D Scarfy = LoadTexture("dapper-dasher-master-textures/textures/scarfy.png");
  77.  
  78. //Since there is 6 images in one file we draw from, the width will be divided by 6
  79. scarfyData.rec.width = Scarfy.width/6;
  80. //The Height is the same as loaded texture
  81. scarfyData.rec.height = Scarfy.height;
  82. //The starting point on the image to be loaded is 0,0 on the top left of the screen
  83. scarfyData.rec.x = 0;
  84. scarfyData.rec.y = 0;
  85. //Putting the center of Scarfy to be in the center of the Window
  86. scarfyData.pos.x = WindowDim[0]/2 - scarfyData.rec.width/2;
  87. scarfyData.pos.y = WindowDim[1] - scarfyData.rec.height;
  88. scarfyData.frame = 0;
  89. //Amount of time before we update Scarfy's animation frame
  90. scarfyData.updatetime = 1.0/12.0;
  91. //Time passed since scarfy's animation frame was updated
  92. //scarfyData.runningtime = 0.0;
  93.  
  94. const int SizeofNubulee {6};
  95.  
  96. //Nebula variables
  97. Texture2D Nebula = LoadTexture("dapper-dasher-master-textures/textures/12_nebula_spritesheet.png");
  98.  
  99. //Initializing Nebula 2 using a custom variable
  100. //AnimData for Nebula
  101. //Input must be Rectangle, Vector, Int float, and float
  102. //(float)
  103. //(float)
  104. //AnimData nebData {
  105. // {0.0,0.0,Nebula.width/8.0,Nebula.height/8.0} , // Rectangle rec (x,y,width,height) ,pos ,frame,update time, running time)
  106. //{WindowDim[0],WindowDim[1] - Nebula.height/8}, //Vector2 pos (X float, Y Float)
  107. //0, //Frame (int)
  108. //1.0/12.0, //UpdateTimeNeb float
  109. //0// RunningTimeNeb float
  110. // };
  111.  
  112. //Initializing Nebula 2 using a custom variable
  113. //AnimData Neb2Data{
  114. //{0.0,0.0,Nebula.width/8.0,Nebula.height/8.0},
  115. //{WindowDim[0]+300, WindowDim[1] - Nebula.height/8},
  116. //0,
  117. //1.0/10.0
  118. //,0
  119. //};
  120.  
  121. //Stores each Animdata in an array size of 2
  122. AnimData Nubulee [SizeofNubulee]{};//nebData,Neb2Data};
  123. for (int i = 0; i < SizeofNubulee; i++)
  124. {
  125. Nubulee[i].rec.x = 0.0;
  126. Nubulee[i].rec.y = 0.0;
  127. Nubulee[i].rec.width = Nebula.width/8;
  128. Nubulee[i].rec.height = Nebula.height/8;
  129. Nubulee[i].pos.y = WindowDim[1] - Nebula.height/8;
  130. Nubulee[i].frame = 0;
  131. Nubulee[i].runningtime = 0.0;
  132. Nubulee[i].updatetime = 1.0/12.0;
  133. Nubulee[i].pos.x = WindowDim[0] + (i * 300);
  134. }
  135. //Nubulee[0].pos.x = WindowDim[0];
  136. //Nubulee[1].pos.x = WindowDim[0]+300;
  137. //Nubulee[2].pos.x = WindowDim[0]+600;
  138. //Nubulee[3].pos.x = WindowDim[0]+900;
  139. //Nubulee[4].pos.x = WindowDim[0]+1200;
  140. //Nubulee[5].pos.x = WindowDim[0]+1500;
  141. //Loading in the Nebula sprite sheet which is a 8x8 png sheet
  142. // Rectangle NebRec {0.0,0.0,(float)(Nebula.width/8.0),(float)(Nebula.height/8.0)};
  143. // Vector2 nebPos{WidthW,HeightW - NebRec.height};
  144.  
  145. //Second variables for Nebula
  146. //Rectangle nebRec2{0.0,0.0,(float)(Nebula.width/8.0),(float)(Nebula.height/8.0)};
  147. //Vector2 nebPos2{WidthW+300,HeightW - NebRec.height};
  148.  
  149. //Nebula velocity (pixles per second)
  150. int nevVel {-345};
  151.  
  152. //Custom variable that will load the a section of the loaded png
  153. //Rectangle ScarfyRec;
  154.  
  155. //Since there is 6 images in one file we draw from, the width will be divided by 6
  156. //ScarfyRec.width = Scarfy.width/6;
  157.  
  158. //The Height is the same as loaded texture
  159. //ScarfyRec.height = Scarfy.height;
  160.  
  161. //The starting point on the image to be loaded is 0,0 on the top left of the screen
  162. //ScarfyRec.x = 0;
  163. //ScarfyRec.y = 0;
  164.  
  165.  
  166. //Position for the draw texture pact
  167. //Vector2 ScarfyPostion;
  168.  
  169.  
  170. //Putting the center of Scarfy to be in the center of the Window
  171. //ScarfyPostion.x = WidthW/2 - ScarfyRec.width/2;
  172. //ScarfyPostion.y = HeightW - ScarfyRec.height;
  173.  
  174. //Jumping velocity pixles per second
  175. const int jump {-600};
  176.  
  177. //Rectangle Example\/
  178. //const int RectH {25};
  179. //const int rectW {100};
  180.  
  181. //Velocity and Position Variables
  182. int Velocity {0};
  183. //Position of the rectangle will appear at the Rectangle's height, 100 pixles above the bottom of tg
  184. //int PosY {HeightW - rectW};
  185.  
  186. bool InAir;
  187. //counter 0-6, of each sprite of scarfy
  188. int FramePos{0};
  189.  
  190. //Which sprite from the nebula sprite sheet to use
  191. //int nebFrame {0};
  192.  
  193. //How much time should pass between animation frames of the nebula
  194. //const float UpdateTimeNeb (1.0/12.0);
  195.  
  196. //How much time has passed since we updated the animation fram for the nebula
  197. //float RunningTimeNeb (0);
  198.  
  199. //Amount of time before we update animation frame
  200. const float UpdateFPS (1.0/12.0);
  201.  
  202.  
  203. //int neb2frame{0};
  204. //const float update2timeNeb {1.0/10.0};
  205. //float nebRunningTime2;
  206.  
  207.  
  208. //Time passed since scarfy's animation frame was updated
  209. //float runningtime (0);
  210. Texture2D Background = LoadTexture ("dapper-dasher-master-textures/textures/far-buildings.png");
  211.  
  212. Texture2D Midground = LoadTexture("dapper-dasher-master-textures/textures/back-buildings.png");
  213.  
  214. Texture2D Foreground = LoadTexture("dapper-dasher-master-textures/textures/foreground.png");
  215.  
  216. //Semi global variable used to repeat background
  217. float bgX {0};
  218. float mgX {0};
  219. float fgX {0};
  220.  
  221. SetTargetFPS(60);
  222. //Dont forget that '!' can negate a boolean
  223. while(!WindowShouldClose())
  224. {
  225. //delta time (time since last frame)
  226. float dt{GetFrameTime()};
  227.  
  228. //if Scarfy is in the air, his sprite would pause
  229. if(!InAir)
  230. {
  231. scarfyData = UpdateAnimData (scarfyData, dt, 5);
  232.  
  233. // Point of this part of the code is to make sure that each fram of scarfy loops at a certain pace.
  234. //We dont want it to run at 60 frames per second so we slow down only scarfy
  235.  
  236. //update running time/Animation frames
  237. // scarfyData.runningtime += dt;
  238.  
  239. // if (scarfyData.runningtime >= scarfyData.updatetime)
  240. // {
  241. // scarfyData.runningtime = 0.0;
  242. //update Running time
  243. //managing framerate and which frame of Sparky to use when running and how fast the sprite goes from one postion to the next
  244. // scarfyData.rec.x = scarfyData.frame * scarfyData.rec.width;
  245. //ScarfyRec.x = FrameTracker * ScarfyRec.width;
  246. // scarfyData.frame++;
  247.  
  248. // if (scarfyData.frame > 5)
  249. // {
  250. // scarfyData.frame = 0;
  251. // }
  252. // scarfyData.rec.x = FramePos * scarfyData.rec.width;
  253. //ScarfyRec.x = FramePos*ScarfyRec.width;
  254. // FramePos++;
  255.  
  256. // if (FramePos > 5)
  257. // {
  258. // FramePos = 0;
  259. // }
  260.  
  261. // }
  262. }
  263.  
  264.  
  265. for (int i = 0; i < SizeofNubulee; i++)
  266. {
  267.  
  268. Nubulee [i] = UpdateAnimData (Nubulee[i], dt, 7);
  269.  
  270. //Update Nebula's animation frame //now using a for loop and a const int
  271. //Nubulee[i].runningtime += dt;
  272. //if (Nubulee[i].runningtime>= Nubulee[i].updatetime)
  273. // {
  274. //Nubulee[i].runningtime = 0.0;
  275. //Nubulee[i].rec.x = Nubulee[i].frame * Nubulee[i].rec.width;
  276. //Nubulee[i].frame++;
  277. // if (Nubulee[i].frame > 7)
  278. //{
  279. // Nubulee[i].frame = 0;
  280. //}
  281.  
  282. //}
  283. }
  284.  
  285. //Update 2nd Nebula's animation frame
  286. //Nubulee[1].runningtime += dt;
  287. //if (Nubulee[1].runningtime >= Nubulee[1].updatetime)
  288. //{
  289. //Nubulee[1].runningtime = 0.0;
  290. // Nubulee[1].rec.x = Nubulee[1].frame * Nubulee[1].rec.width;
  291. //Nubulee[1].frame++;
  292. // if (Nubulee[1].frame > 7)
  293. // {
  294. // Nubulee[1].frame = 0;
  295. //}
  296.  
  297. //}
  298.  
  299.  
  300. //start drawing
  301. BeginDrawing();
  302. //creates the background color
  303. ClearBackground(BLACK);
  304.  
  305. bgX -= 20*dt;
  306.  
  307. if (bgX <= -Background.width*2)
  308. {
  309. bgX = 0.0;
  310. }
  311.  
  312. //Scroll the midground
  313. mgX -= 40*dt;
  314.  
  315. if (mgX <= -Midground.width*2)
  316. {
  317. mgX = 0.0;
  318. }
  319.  
  320. //Scroll the foreground
  321. fgX -= 80*dt;
  322.  
  323. if (fgX <= -Foreground.width*2)
  324. {
  325. fgX = 0.0;
  326. }
  327.  
  328.  
  329.  
  330. //The background position changes on a rate of 20*delta time
  331. Vector2 bg1Pos {bgX,0.0};
  332. //Draw the Background
  333. DrawTextureEx(Background,bg1Pos, 0.0, 6.0, PINK);
  334. //The background position changes on a rate of 20*delta time
  335. Vector2 bg2Pos {bgX+Background.width*2, 0.0};
  336. DrawTextureEx(Background,bg2Pos, 0.0, 6.0, PINK);
  337.  
  338. //Draw the Midground
  339. Vector2 mg1Pos {mgX,0.0};
  340. DrawTextureEx(Midground,mg1Pos,0.0,4,WHITE);
  341. Vector2 mg2Pos {mgX+Midground.width*2, 0.0};
  342. DrawTextureEx(Midground,mg2Pos,0.0,4,WHITE);
  343.  
  344. //Draw the Background
  345. Vector2 fg1Pos {fgX,0.0};
  346. DrawTextureEx(Foreground,fg1Pos,0.0,5.2,WHITE);
  347. Vector2 fg2Pos {fgX+Foreground.width*2, 0.0};
  348. DrawTextureEx(Foreground,fg2Pos,0.0,5.2,WHITE);
  349.  
  350.  
  351. //have to make sure that the starting position of the rectangle is on the bottom of the window
  352. //ground height, if the rectangle is sitting on the bottoom of the window
  353. // if (ScarfyPostion.y >= HeightW - ScarfyRec.width)
  354. // if (scarfyData.pos.y >= WindowDim[1] - scarfyData.rec.height)
  355.  
  356. //Using a custon function to determine if Scarfy is on the grounds
  357. if (isOnGround (scarfyData,WindowDim[1]))
  358. {
  359. Velocity = 0;
  360. InAir = false;
  361. }else
  362. {
  363. //Rectangle is in the air
  364. //apply gravity per each frame of the while loop
  365. Velocity += Gravity * dt;
  366. InAir = true;
  367. }
  368.  
  369. //Checking for jumping
  370. if(IsKeyPressed(KEY_SPACE)&& !InAir)
  371. {
  372. Velocity +=jump;
  373. }
  374.  
  375. for (int i = 0; i < SizeofNubulee; i++)
  376. {
  377. //update each of nebula's position
  378. Nubulee[i].pos.x += nevVel * dt;
  379. }
  380.  
  381.  
  382. //Update second nebula position
  383. // Nubulee[1].pos.x += nevVel * dt;
  384.  
  385. //updating the position of scarfy each instance of the while loop
  386. scarfyData.pos.y += Velocity * dt;
  387. for (int i = 0; i < SizeofNubulee;i++)
  388. {
  389. //Draw Nebula
  390. DrawTextureRec(Nebula,Nubulee[i].rec,Nubulee[i].pos,YELLOW);
  391. }
  392.  
  393. //Draw 2nd Nebula
  394. //DrawTextureRec(Nebula,Nubulee[1].rec,Nubulee[1].pos,YELLOW);
  395.  
  396. //Draw scarfy
  397. //DrawTextureRec(Scarfy,ScarfyRec,ScarfyPostion,PINK);
  398. DrawTextureRec(Scarfy,scarfyData.rec,scarfyData.pos,PINK);
  399. //Creating the rectangle
  400. //DrawRectangle(WidthW/2, PosY, RectH,rectW,WHITE);
  401. //ends the drawing
  402. EndDrawing();
  403.  
  404. }
  405. //Closing the texture sheets after the program is done
  406. UnloadTexture(Scarfy);
  407. UnloadTexture(Nebula);
  408. UnloadTexture(Background);
  409. UnloadTexture(Midground);
  410. UnloadTexture(Foreground);
  411. CloseWindow();
  412. }
  413.  
  414.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement