2001-04-24 18:15:04 +02:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
map.h
|
|
|
|
|
|
|
|
Author: PKG
|
|
|
|
Created:
|
|
|
|
Project: Spongebob
|
|
|
|
Purpose:
|
|
|
|
|
|
|
|
Copyright (c) 2001 Climax Development Ltd
|
|
|
|
|
|
|
|
===========================================================================*/
|
|
|
|
|
|
|
|
#ifndef __MAP_MAP_H__
|
|
|
|
#define __MAP_MAP_H__
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
Includes
|
|
|
|
-------- */
|
|
|
|
|
|
|
|
#ifndef __SYSTEM_GSTATE_H__
|
|
|
|
#include "system\gstate.h"
|
|
|
|
#endif
|
|
|
|
|
2001-04-25 01:14:50 +02:00
|
|
|
#ifndef _GLOBAL_HEADER_
|
|
|
|
#include "system\global.h" // Doh.. just for DVECTOR :/
|
|
|
|
#endif
|
|
|
|
|
2001-04-24 18:15:04 +02:00
|
|
|
|
|
|
|
/* Std Lib
|
|
|
|
------- */
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
Tyepdefs && Defines
|
|
|
|
------------------- */
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
Structure defintions
|
|
|
|
-------------------- */
|
|
|
|
|
|
|
|
class CMapScene: public CScene
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
void init();
|
|
|
|
void shutdown();
|
|
|
|
void render();
|
|
|
|
void think(int _frames);
|
|
|
|
int readyToShutdown();
|
|
|
|
char *getSceneName() {return"Map";}
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
2001-04-24 21:37:12 +02:00
|
|
|
void copyImageToScreen(int _file,int _x,int _y,int _w,int _h);
|
2001-04-25 01:14:50 +02:00
|
|
|
int isLevelOpen(int _chapter,int _level);
|
|
|
|
int getSpatulaCollectedCount(int _chapter,int _level);
|
|
|
|
int getSpatulaAvailableCount(int _chapter,int _level);
|
|
|
|
int hasQuestItemBeenCollected(int _chapter,int _level);
|
2001-04-24 21:37:12 +02:00
|
|
|
|
|
|
|
|
2001-04-24 18:15:04 +02:00
|
|
|
class FontBank *m_font;
|
|
|
|
int m_readyToExit;
|
|
|
|
|
2001-04-24 21:37:12 +02:00
|
|
|
char *m_screenImage;
|
|
|
|
|
2001-04-25 01:14:50 +02:00
|
|
|
class CGUIControlFrame *m_guiFrame;
|
|
|
|
class SpriteBank *m_spriteBank;
|
|
|
|
|
|
|
|
int m_currentChapterSelection;
|
|
|
|
int m_currentLevelSelection;
|
|
|
|
DVECTOR m_pointerPos;
|
|
|
|
DVECTOR m_pointerTarget;
|
|
|
|
int m_pointerSin;
|
|
|
|
|
2001-04-24 18:15:04 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
Globals
|
|
|
|
------- */
|
|
|
|
|
|
|
|
extern CMapScene MapScene;
|
|
|
|
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
Functions
|
|
|
|
--------- */
|
|
|
|
|
|
|
|
/*---------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
#endif /* __MAP_MAP_H__ */
|
|
|
|
|
|
|
|
/*===========================================================================
|
|
|
|
end */
|