This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
notes:data:fall2023:projects:mpg0 [2023/09/02 16:33] – [Gamepad input] jwieland | notes:data:fall2023:projects:mpg0 [2023/09/06 19:25] (current) – [Bounds checking] dwhite26 | ||
---|---|---|---|
Line 14: | Line 14: | ||
====Game loop==== | ====Game loop==== | ||
+ | The game loop will consist of everything in the main while loop. This will iterate 60 times per second | ||
====Sprites==== | ====Sprites==== | ||
Line 33: | Line 34: | ||
scp sprites.png username@raspberrypi: | scp sprites.png username@raspberrypi: | ||
</ | </ | ||
+ | |||
+ | ===Including Sprites In The Game=== | ||
+ | |||
+ | To include a sprite in the game cartridge you have to change the make.sh file to include the png. It should look something like this. | ||
+ | |||
+ | <code bash> | ||
+ | echo | ||
+ | echo Convert the PNG textures | ||
+ | echo -------------------------- | ||
+ | png2vircon Texture.png -o obj/ | ||
+ | </ | ||
+ | |||
+ | There is no limit to the amount of pngs you can convert, however you also need to include the texture in the pong.xml file to have the texture show up in the cartridge. | ||
+ | |||
+ | <code xml> | ||
+ | < | ||
+ | <texture path=" | ||
+ | <texture path=" | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | after finishing this, you should be good to use the pngs in your code, Rom texture numbers begin with 0, so selecting texture 0 would result in Texture1.vtex | ||
+ | |||
+ | <code c> | ||
+ | select_texture( 0 ); //selects the Texture1 set in the .xml file | ||
+ | </ | ||
+ | |||
+ | <code c> | ||
+ | select_region( 0 ); // Sets the selected texture region to the given texture ID | ||
+ | </ | ||
+ | |||
+ | <code c> | ||
+ | define_region( int min_x, int min_y, int max_x, int max_y, int hotspot_x, int hotspot_y ); | ||
+ | </ | ||
+ | |||
+ | These x and y values correspond to the pixel coordinates in the selected texture. | ||
====Gamepad input==== | ====Gamepad input==== | ||
Line 38: | Line 75: | ||
<code C> | <code C> | ||
+ | #include " | ||
int directionX, directionY; | int directionX, directionY; | ||
| | ||
Line 47: | Line 85: | ||
====Bounds checking==== | ====Bounds checking==== | ||
+ | The bounds of the Vircon32 emulator are 640x360. will 0,0 being at the top left and 640, 360 being at the bottom right. you can use these maximum width and height values to see if something comes in contact with them. | ||
+ | |||
+ | To do this you will need a max and min X , and a max and min Y. These will tell your object where they can and cannot go. | ||
+ | < | ||
+ | if (objectX > MaxX) | ||
+ | | ||
+ | </ | ||
====Handling motion==== | ====Handling motion==== | ||
+ | Motion from the player will be used from controller input. You have to be able to check if the player is holding/ | ||
+ | |||
+ | Motion not from the player can be activated on your own set conditions. such as using bool to activate or deactivate the ball and if functions to run through a set of code if the ball is active or not. | ||
====Score Display==== | ====Score Display==== | ||
+ | To display a score, you'll need to declare a couple integers first to mathematically keep track of each player' | ||
+ | int [name of variable for paddle 2];</ | ||
+ | |||
+ | Drawing the score on the display is simple, the process used in btt0's "Hello World" project mostly works here. However, you'll first need to convert the integer to a string, as Vircon32' | ||
+ | |||
+ | We'll need to make use of itoa() used from the string.h library. In order to convert the score integer to the score string, do: < | ||
+ | |||
+ | itoa( [name of integer score], [name of array], [numerical base] ); </ |