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

📄 menuitem.h.svn-base

📁 坦克大战游戏完整全套源代码
💻 SVN-BASE
字号:
/*
** Haaf's Game Engine 1.5
** Copyright (C) 2003-2005, Relish Games
** hge.relishgames.com
**
** Tutorial 06 - Creating menus
*/

// In menuitem.cpp/h we define the
// behaviour of our custom GUI control

#include "hge.h"
#include "hgegui.h"
#include "hgefont.h"
#include "hgecolor.h"


class hgeGUIMenuItem : public hgeGUIObject
{
public:
    hgeGUIMenuItem(int id, hgeFont *fnt, HEFFECT snd, float x, float y, float delay, char *title);

    virtual void Render();
    virtual void Update(float dt);

    virtual void Enter();
    virtual void Leave();
    virtual bool IsDone();
    virtual void Focus(bool bFocused);
    virtual void MouseOver(bool bOver);

    virtual bool MouseLButton(bool bDown);
    virtual bool KeyClick(int key, int chr);

private:
    hgeFont *fnt;
    HEFFECT snd;
    float delay;
    char *title;

    hgeColor scolor, dcolor, scolor2, dcolor2, sshadow, dshadow;
    hgeColor color, shadow;
    float soffset, doffset, offset;
    float timer, timer2;
};

⌨️ 快捷键说明

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