overheadcontroller.h

来自「这是整套横扫千军3D版游戏的源码」· C头文件 代码 · 共 41 行

H
41
字号
#ifndef __OVERHEAD_CONTROLLER_H__
#define __OVERHEAD_CONTROLLER_H__

#include "CameraController.h"


class COverheadController : public CCameraController
{
public:
	COverheadController(int num);

	const std::string GetName() const { return "ta"; }

	void KeyMove(float3 move);
	void MouseMove(float3 move);
	void ScreenEdgeMove(float3 move);
	void MouseWheelMove(float move);

	float3 GetPos();
	float3 GetDir();

	float3 SwitchFrom() const;
	void SwitchTo(bool showText);

	void GetState(std::vector<float>& fv) const;
	bool SetState(const std::vector<float>& fv);

	bool flipped;

private:
	float zscale;
	float3 dir;
	float height;
	float oldAltHeight;
	bool changeAltHeight;
	float maxHeight;
	float tiltSpeed;
};

#endif

⌨️ 快捷键说明

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