Question
Opengl/C++ windows ** I only need the cannon code Develop a simple 3D shooting game using OpenGL. The program should meet the following requirements: Create
Opengl/C++ windows ** I only need the cannon code
Develop a simple 3D shooting game using OpenGL.
The program should meet the following requirements:
Create and add a 3D cannon such that it aims forward from the viewer towards the far plane (Fig. 1). It is okay to show only the tip (firing end) of the cannon.
The cannon can turn left and right, and up and down (yaw and pitch movements) like a real cannon. The
user controls left-right rotation with right-left arrow keys, and up-down rotation with up-down arrow keys. The rotation in either direction should be clamped to a certain range (say, 120 degrees) so the cannonball would stay within the view volume.
The cannon should fire a cannonball (sphere) every time the user presses the space bar. The ball should fly in the direction of the current orientation of the cannon. Once the ball goes through any wall and thus no longer visible, delete it from the scene to avoid clogging the memory. Therefore, the system will store no more than a few (fired) balls at any given time.
During the game, display text at the top of the screen that shows how many teapots are currently left
(Fig. 1).
When the cannonball hits one of the teapots (collision detection needed here), the hit teapot must immedi-ately disappear from the scene (and so must this cannonball). The text must also be updated accordingly with a new number (one less teapots left).
When the last teapot is hit, the game is over and the text should be replaced with Continue? (Y/N). If the user presses y, start the game over. If n, exit program.
The background walls (all 5 of them) must be texture mapped, although Fig. 1 doesnt show it. You can use any tileable texture image of your choice, but make sure the image file size is less then 1MB (with no bigger than 512512 pixel resolution). Do not use multiple texture images.
If the user presses q at any time (even during the game), exit program.
If the animation is too fast on your computer, slow it down to a level where each teapots movement and the cannonballs movement are clearly recognizable.
Make sure there is no sudden jump or discontinuity in the animation. The whole sequence of transfor-mations must be smooth and continuous.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started