SBSPSS/source/map/map.h

124 lines
2.5 KiB
C
Raw Normal View History

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-25 20:15:19 +02:00
enum
{
MAP_PARCHMENT_WIDTH=496,
MAP_PARCHMENT_HEIGHT=190,
MAP_PARCHMENT_START_X=(512-MAP_PARCHMENT_WIDTH)/2,
MAP_PARCHMENT_START_Y=20,
MAP_LEVEL_WIDTH=140,
MAP_LEVEL_HEIGHT=60,
MAP_LEVEL_TOP_BORDER=20,
MAP_LEVEL_Y_SPACING=8,
MAP_LEVEL_X_SPACING=4,
MAP_INSTRUCTIONS_WIDTH=416,
MAP_INSTRUCTIONS_HEIGHT=32,
MAP_INSTRUCTIONS_BOTTOM_OFFSET=40,
};
typedef struct
{
int m_mapFiles[6];
int m_globalLevelNumbers[6];
int m_questItemFrames[4];
} sMapLevelData;
void generateMapScreenImage();
2001-04-24 21:37:12 +02:00
void copyImageToScreen(int _file,int _x,int _y,int _w,int _h);
2001-04-25 20:15:19 +02:00
DVECTOR getPointerTargetPosition();
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 20:15:19 +02:00
class SpriteBank *m_spriteBank;
2001-04-25 01:14:50 +02:00
int m_currentChapterSelection;
int m_currentLevelSelection;
DVECTOR m_pointerPos;
DVECTOR m_pointerTarget;
int m_pointerSin;
2001-04-25 20:15:19 +02:00
static sMapLevelData s_mapLevelData[5];
2001-04-24 18:15:04 +02:00
};
/*----------------------------------------------------------------------
Globals
------- */
extern CMapScene MapScene;
/*----------------------------------------------------------------------
Functions
--------- */
/*---------------------------------------------------------------------- */
#endif /* __MAP_MAP_H__ */
/*===========================================================================
end */