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

📄 commoncutscene.cpp

📁 VIGASOCO (VIdeo GAmes SOurce COde) Windows port (v0.01)
💻 CPP
字号:
// CommonCutscene.cpp
//
/////////////////////////////////////////////////////////////////////////////

#include "CommonCutscene.h"
#include "Game.h"
#include "Ghost.h"
#include "Pacman.h"

void NopCutsceneState::run()
{
	// TODOSOUND: stop sound

	// increments level state twice
	theGame->states[PLAYING]->substate++;
	theGame->states[PLAYING]->substate++;
}

void cutsceneMainLoop(bool slow)
{
	// moves pacman and red ghost
	theGame->pacman->run();
	theGame->pacman->run();

	if (!slow){
		theGame->ghost[RED]->run();
	}
	theGame->ghost[RED]->run();

	theGame->updateGhostAnimCounters();
}

⌨️ 快捷键说明

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