2012-03-19 11:44:39 +00:00
|
|
|
// * This file is part of the COLOBOT source code
|
2012-03-09 16:08:05 +00:00
|
|
|
// * Copyright (C) 2001-2008, Daniel ROUX & EPSITEC SA, www.epsitec.ch
|
|
|
|
// *
|
|
|
|
// * This program is free software: you can redistribute it and/or modify
|
|
|
|
// * it under the terms of the GNU General Public License as published by
|
|
|
|
// * the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// * (at your option) any later version.
|
|
|
|
// *
|
|
|
|
// * This program is distributed in the hope that it will be useful,
|
|
|
|
// * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// * GNU General Public License for more details.
|
|
|
|
// *
|
|
|
|
// * You should have received a copy of the GNU General Public License
|
2012-03-23 18:53:39 +00:00
|
|
|
// * along with this program. If not, see http://www.gnu.org/licenses/.
|
|
|
|
|
|
|
|
// displaytext.h
|
2012-03-08 18:32:05 +00:00
|
|
|
|
2012-06-09 22:18:08 +00:00
|
|
|
#pragma once
|
2012-03-08 18:32:05 +00:00
|
|
|
|
|
|
|
|
2012-06-13 20:48:35 +00:00
|
|
|
#include "common/event.h"
|
|
|
|
#include "common/misc.h"
|
2012-06-22 14:31:55 +00:00
|
|
|
#include "old/d3dengine.h"
|
2012-03-23 21:08:59 +00:00
|
|
|
|
|
|
|
|
2012-03-08 18:32:05 +00:00
|
|
|
class CInstanceManager;
|
|
|
|
class CD3DEngine;
|
|
|
|
class CInterface;
|
|
|
|
class CObject;
|
|
|
|
class CSound;
|
|
|
|
|
|
|
|
|
|
|
|
enum TextType
|
|
|
|
{
|
|
|
|
TT_ERROR = 1,
|
|
|
|
TT_WARNING = 2,
|
|
|
|
TT_INFO = 3,
|
|
|
|
TT_MESSAGE = 4,
|
|
|
|
};
|
|
|
|
|
2012-06-11 15:28:27 +00:00
|
|
|
const int MAXDTLINE = 4;
|
2012-03-08 18:32:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
class CDisplayText
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CDisplayText(CInstanceManager* iMan);
|
|
|
|
~CDisplayText();
|
|
|
|
|
|
|
|
void DeleteObject();
|
|
|
|
|
2012-06-10 13:28:12 +00:00
|
|
|
bool EventProcess(const Event &event);
|
2012-03-08 18:32:05 +00:00
|
|
|
|
|
|
|
void DisplayError(Error err, CObject* pObj, float time=10.0f);
|
2012-06-19 18:11:47 +00:00
|
|
|
void DisplayError(Error err, Math::Vector goal, float height=15.0f, float dist=60.0f, float time=10.0f);
|
2012-03-08 18:32:05 +00:00
|
|
|
void DisplayText(char *text, CObject* pObj, float time=10.0f, TextType type=TT_INFO);
|
2012-06-19 18:11:47 +00:00
|
|
|
void DisplayText(char *text, Math::Vector goal, float height=15.0f, float dist=60.0f, float time=10.0f, TextType type=TT_INFO);
|
2012-06-10 13:28:12 +00:00
|
|
|
void HideText(bool bHide);
|
2012-03-08 18:32:05 +00:00
|
|
|
void ClearText();
|
2012-06-10 13:28:12 +00:00
|
|
|
bool ClearLastText();
|
2012-03-08 18:32:05 +00:00
|
|
|
void SetDelay(float factor);
|
2012-06-10 13:28:12 +00:00
|
|
|
void SetEnable(bool bEnable);
|
2012-03-08 18:32:05 +00:00
|
|
|
|
2012-06-19 18:11:47 +00:00
|
|
|
Math::Vector RetVisitGoal(EventMsg event);
|
2012-03-08 18:32:05 +00:00
|
|
|
float RetVisitDist(EventMsg event);
|
|
|
|
float RetVisitHeight(EventMsg event);
|
|
|
|
|
|
|
|
float RetIdealDist(CObject* pObj);
|
|
|
|
float RetIdealHeight(CObject* pObj);
|
|
|
|
|
|
|
|
void ClearVisit();
|
|
|
|
void SetVisit(EventMsg event);
|
2012-06-10 13:28:12 +00:00
|
|
|
bool IsVisit(EventMsg event);
|
2012-03-08 18:32:05 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
CObject* SearchToto();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
CInstanceManager* m_iMan;
|
|
|
|
CD3DEngine* m_engine;
|
|
|
|
CInterface* m_interface;
|
|
|
|
CSound* m_sound;
|
|
|
|
|
2012-06-10 13:28:12 +00:00
|
|
|
bool m_bExist[MAXDTLINE];
|
2012-03-08 18:32:05 +00:00
|
|
|
float m_time[MAXDTLINE];
|
2012-06-19 18:11:47 +00:00
|
|
|
Math::Vector m_visitGoal[MAXDTLINE];
|
2012-03-08 18:32:05 +00:00
|
|
|
float m_visitDist[MAXDTLINE];
|
|
|
|
float m_visitHeight[MAXDTLINE];
|
|
|
|
|
2012-06-10 13:28:12 +00:00
|
|
|
bool m_bHide;
|
|
|
|
bool m_bEnable;
|
2012-03-08 18:32:05 +00:00
|
|
|
float m_delayFactor;
|
|
|
|
};
|
|
|
|
|
|
|
|
|