⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 game.cpp

📁 蕃茄炸弹超人[ACT]I ve no Tomatoes 开放原始码
💻 CPP
字号:
/*************************************************************************

                         "I Have No Tomatoes"
                  Copyright (c) 2004, Mika Halttunen

 This software is provided 'as-is', without any express or implied
 warranty. In no event will the authors be held liable for any damages
 arising from the use of this software.

 Permission is granted to anyone to use this software for any purpose,
 including commercial applications, and to alter it and redistribute
 it freely, subject to the following restrictions:

    1. The origin of this software must not be misrepresented; you must
    not claim that you wrote the original software. If you use this
    software in a product, an acknowledgment in the product documentation
    would be appreciated but is not required.

    2. Altered source versions must be plainly marked as such, and must
    not be misrepresented as being the original software.

    3. This notice may not be removed or altered from any source
    distribution.


 Mika Halttunen <lsoft@mbnet.fi>

*************************************************************************/

#include <stdio.h>
#include "SDL.h"
#include "SDL_opengl.h"
#include "SDL_image.h"
#include "game.h"
#include "texture.h"
#include "init.h"
#include "timer.h"
#include "player.h"
#include "mymath.h"
#include "tilemap.h"
#include "enemy.h"
#include "font.h"
#include "bomb.h"
#include "particle.h"
#include "bonus.h"
#include "screenshot.h"
#include "levels.h"
#include "teleport.h"
#include "effects.h"
#include "special_power.h"
#include "soundmusic.h"
#include "trap.h"
#include "bgrounds.h"
#include "mpak.h"
#include "helpers.h"
#include "comments.h"
#include "select_special.h"
#include "hiscore.h"


// Background texture list
int bgrounds[NUM_BGROUNDS];
GLuint cur_bground;

// Fading stuff
// Are we fading? (0 == no, 1 == fade in, 2 == fade out)
int fading;
float fade_amount;


// Lighting
static float light_ambient[] = { 0.75f, 0.75f, 0.75f, 1.0f };
static float light_diffuse1[] = { 1.0f, 1.0f, 1.0f, 1.0f };
static float light_diffuse2[] = { 0.5f, 0.5f, 0.5f, 1.0f };
//static float light_diffuse2[] = { 0.3f, 0.8f, 1.0f, 1.0f };
static float light_position1[] = { MAP_W*0.5f, 6.0f, MAP_H*0.75f, 1.0f };
static float light_position2[] = { -MAP_W*0.5f, 2.0f, MAP_H*0.25f, 1.0f };


// Array containing currently pressed keys
Uint8 key[SDLK_LAST];

// Kill count
int kill_count;

// Are we playing a two player game?
bool two_players;


// From bonus.cpp
extern int killed_5_diamonds;


// Confirm the ESC press
static bool confirm_esc;


// Current fps
static float fps;


// Load background textures
void load_bgrounds() {
	// Prepare the background list
	for(int f=0; f<NUM_BGROUNDS; f++)
		bgrounds[f] = f;

	// Set the lighting
	glLightfv(GL_LIGHT1, GL_DIFFUSE, light_diffuse1);
	glLightfv(GL_LIGHT1, GL_POSITION, light_position1);
	glEnable(GL_LIGHT1);
	glLightfv(GL_LIGHT2, GL_DIFFUSE, light_diffuse2);
	glLightfv(GL_LIGHT2, GL_POSITION, light_position2);
	glEnable(GL_LIGHT2);
	glLightModelfv(GL_LIGHT_MODEL_AMBIENT, light_ambient);
}


// Draw the scene
void draw() {
	//glClear(GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT);
	glClear(GL_DEPTH_BUFFER_BIT);

	// Set up the viewport (either perspective or ortho)
	glMatrixMode(GL_PROJECTION);
	glLoadIdentity();
	if(!config.perspective_mode)
		glOrtho(-11.0f, 11.0f, -8.0f, 8.0f, -50.0f, 50.0f);
	else {
		gluPerspective(30.0f, 1.333333f, 1, 100);
		glTranslatef(0,0,-32);
	}

	// Draw the background
	glMatrixMode(GL_MODELVIEW);
	glLoadIdentity();
	BIND_TEXTURE(cur_bground);
	glDepthMask(GL_FALSE);
	glColor3f(1,1,1);
	glBegin(GL_TRIANGLE_STRIP);
		if(!config.perspective_mode) {
			glTexCoord2f(1,1); glVertex3f(11.0f, 8.0f, -2);
			glTexCoord2f(0,1); glVertex3f(-11.0f, 8.0f, -2);
			glTexCoord2f(1,0); glVertex3f(11.0f, -8.0f, -2);
			glTexCoord2f(0,0); glVertex3f(-11.0f, -8.0f, -2);
		}
		else {
			glTexCoord2f(1,1); glVertex3f(12.2f, 9.1f, -2);
			glTexCoord2f(0,1); glVertex3f(-12.2f, 9.1f, -2);
			glTexCoord2f(1,0); glVertex3f(12.2f, -9.1f, -2);
			glTexCoord2f(0,0); glVertex3f(-12.2f, -9.1f, -2);
		}
	glEnd();
	glDepthMask(GL_TRUE);

	// Rotate to the isometric view
	glRotatef(30.0f, 1.0f, 0,0);
	glRotatef(-45.0f, 0, 1.0f, 0.0f);

	// Center the map around the origin
	glTranslatef(-MAP_W * 0.5f, 0, -MAP_H * 0.5f);


	// Draw the map
	draw_map();

	// Enable alpha blending for sprites
	glEnable(GL_BLEND);
	glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);

	// Draw the traps
	draw_traps();


	// Enable alpha testing
	glEnable(GL_ALPHA_TEST);

	// Draw the enemies
	draw_enemies();

	// Draw the players
	p1.draw();
	if(two_players)
		p2.draw();

	// Draw the potato men
	draw_potatomen();

	// Draw the bombs
	draw_bombs();

	// Disable alpha blending
	glDisable(GL_ALPHA_TEST);



	// Draw the bonuses
	draw_bonus();

	// Draw the teleports
	draw_teleports();


	// Draw the particles
	draw_particles();

	// Draw the wisps
	draw_wisps();

	// Draw the special powers
	draw_special_power();

	// Draw the player icons when in two player mode
	draw_player_icons();


	// Begin font drawing
	begin_fonts();

	// Draw the FPS amount
	if(config.show_fps && !icon_menu.visible) {
		glColor3f(1,1,1);
		glprintf_center(font1, 0, 0, 9, -25, "FPS: %02.1f", fps);
	}

	// Draw the kill count
	glColor3f(1,1,0.4f);
	char str[10] = "";
	sprintf(str, "%4d", kill_count);
	glprint_num(2.0f, 3.0f - 1.2f*icon_menu.pos, -10, str);

	// Draw the remaining seconds
	sprintf(str, "%2d", num_seconds_left);
	glColor3f(1, 0.8f, 0.4f);
	set_font_scale(0.25f, 0.3f);
	glprint_num(4.7f, 2.6f - 1.2f*icon_menu.pos, -10, str);
	set_font_scale(1,1);


	// Draw the comments
	draw_comments();

	// Draw the special power selection menu
	draw_special_selection();

	// Draw the ESC confirmation
	if(confirm_esc) {
		glLoadIdentity();
		BIND_TEXTURE(0);
		glColor4f(0,0,0, 0.45f);
		glBegin(GL_TRIANGLE_STRIP);
			glVertex3f(4, 3, -2);
			glVertex3f(-4, 3, -2);
			glVertex3f(4,-3,-2);
			glVertex3f(-4,-3,-2);
		glEnd();

		glColor3f(1,1,1);
		set_font_scale(0.4f, 0.6f);
		glprintf_center(font1, 0, 0, 2.0f, -13, "ARE YOU SURE YOU WANT TO EXIT?");
		glprintf_center(font1, 0, 0, 1.1f, -13, "Press ESC to exit, or ENTER to resume.");
		set_font_scale(1,1);
	}

	// Draw the fade
	if(fade_amount != 0.0f) {
		glLoadIdentity();
		BIND_TEXTURE(0);
		glColor4f(0,0,0,fade_amount);
		glBegin(GL_TRIANGLE_STRIP);
			glVertex3f(4, 3, -2);
			glVertex3f(-4, 3, -2);
			glVertex3f(4,-3,-2);
			glVertex3f(-4,-3,-2);
		glEnd();
	}


	end_fonts();

	// Flush and swap the buffers
	glFlush();
	SDL_GL_SwapBuffers();
}


// Handle SDL events
// Return true if we're going to quit
bool handle_event(SDL_Event &event) {

	switch(event.type) {
		case SDL_QUIT:		// Quit
			return true;

		case SDL_KEYDOWN:
			// Update the 'key' array
			key[event.key.keysym.sym] = 1;
			return false;

		case SDL_KEYUP:
			// Update the 'key' array
			key[event.key.keysym.sym] = 0;
			return false;
	}

	return false;
}


// Start the game
void start_game(bool two_pls) {
	// Initialize
	memset(key, 0, sizeof(key));
	clear_comments();
	clear_map();
	clear_enemies();
	clear_bombs();
	clear_particles();
	clear_bonus();
	clear_traps();
	kill_count = 0;
	two_players = two_pls;

	// Set the players
	p1.clear();
	p2.clear();

	// Init the levels
	init_levels();


	// Fade in
	fading = 1;
	fade_amount = 1.0f;


	// Set up the main loop
	game_paused = false;
	confirm_esc = false;
	timer_count = 0;
	Uint32 fps_counter = 0;
	int frames_drawn = 0;
	Uint32 prev_ticks;
	prev_ticks = SDL_GetTicks();
	Uint32 confirm_time = 0;
	bool main_loop_done = false;
	bool f12_down = false;
	bool key_return_down = false;
	bool key_esc_down = false;
	bool finished = false;


	// Main loop
	while(!main_loop_done) {
		// Handle events
		SDL_Event event;
		while(SDL_PollEvent(&event)) {
			main_loop_done = handle_event(event);
		}

		// Game loop
		while(timer_count > 0 && !game_paused) {
			// Fade
			if(fading) {
				if(fading == 1) {
					// Fade in
					fade_amount -= 0.01f;
					if(fade_amount <= 0.0f) {
						fading = 0;
						fade_amount = 0.0f;
					}
				}
				else if(fading == 2) {
					// Fade out
					fade_amount += 0.01f;
					if(fade_amount >= 1.0f) {
						fading = 0;
						fade_amount = 1.0f;
						main_loop_done = true;
					}
				}
			}

			// Check keypresses
			// ESC press
			if(key[SDLK_ESCAPE] && !fading) {
				if(key_esc_down == false) {
					key_esc_down = true;
					if(!confirm_esc) {
						confirm_esc = true;
						// Keep track of the time, so we can restore it
						confirm_time = SDL_GetTicks();
					}
					else {
						// Fade out
						fading = 2;
						fade_amount = 0.0f;
					}
				}
			}
			else
				key_esc_down = false;

			// ENTER press
			if(confirm_esc) {
				if(key[SDLK_RETURN]) {
					if(key_return_down == false) {
						key_return_down = true;
						confirm_esc = false;
						if(!killed_5_diamonds)
							level_time += (SDL_GetTicks() - confirm_time);
					}
				}
				else
					key_return_down = false;
			}


			// Check if the music has finished playing
			check_music_finished();

			// Screenshot?
			if(key[SDLK_F12]) {
				if(f12_down == false) {
					f12_down = true;
					save_screenshot();
				}
			}
			else
				f12_down = false;

			if(!confirm_esc) {

				// Handle the level pause
				if(level_pause == LEVEL_PAUSE_BEGIN) {
					if(key[SDLK_RETURN] || key[config.key_shoot[0]] || key[config.key_shoot[1]]) {
						if(!key_return_down) {
							// Start timing the level change
							start_level_timing();
							level_pause = 0;
							key_return_down = true;

							// A little hack to prevent players firing their bombs accidentally,
							// if they press their Shoot button to start the level.
							p1.reload = 10;
							p2.reload = 10;
						}
					}
					else
						key_return_down = false;
				}

				// Do the game stuff
				if(!icon_menu.visible && level_pause != LEVEL_PAUSE_BEGIN && !finished) {
					// Change to the next level if enough time has passed
					// (we don't call this when the Killed-5 diamonds are visible, because
					//  it advances the time, and we don't want that to happen.)
					if(!killed_5_diamonds || level_pause == LEVEL_PAUSE_END) {
						if(!change_level()) {
							// We've finished all the levels.
							// Fade out
							finished = true;
							fading = 2;
							fade_amount = 0.0f;
						}
					}

					// Animate stuff
					move_particles();
					animate_teleports();

					// Update the special powers
					update_special_power();

					// Move the stuff
					p1.move();
					if(two_players)
						p2.move();
					move_enemies();
					move_bombs();
					move_bonus();
					move_traps();
					move_wisps();
					move_potatomen();
				}

				// Do the comments
				move_comments();

				// Handle the special power selection menu
				if(!finished)
					do_special_selection();
			}


			// Advance the fps_counter
			if(config.show_fps) {
				Uint32 ticks_now = SDL_GetTicks();
				Uint32 diff = ticks_now - prev_ticks;
				fps_counter += diff;
				prev_ticks = ticks_now;

				if(fps_counter >= 1000) {
					fps = (float)frames_drawn / (float)(fps_counter/1000.0f);
					frames_drawn = 0;
					fps_counter = 0;
				}
			}

			timer_count--;
		}

		// Draw the scene
		draw();
		frames_drawn++;
	}

	// Free the stuff
	clear_enemies();
	clear_bombs();
	clear_particles();
	clear_bonus();
	clear_traps();
	kill_map();


	// Check if we get to the hiscore list
	HISCORE_LIST &list = (two_players) ? hiscore_2 : hiscore_1;
	int place = list.add_name("null", kill_count);
	if(place != -1) {
		// Get the name and save the list
		list.input_name(place);
		if(two_players)
			list.save(get_hiscore_location(2,true));
		else
			list.save(get_hiscore_location(1,true));
	}
}


⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -