2003-01-08 23:43:54 +00:00
|
|
|
/*
|
|
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
|
Class: ScreenUnlock
|
|
|
|
|
|
|
|
|
|
Desc: Base class for all attraction screens.
|
|
|
|
|
|
|
|
|
|
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
|
|
|
|
|
Chris Danford
|
2003-07-10 07:22:31 +00:00
|
|
|
Andrew Wong
|
2003-01-08 23:43:54 +00:00
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
#include "ScreenAttract.h"
|
2003-05-09 05:56:05 +00:00
|
|
|
#include "Style.h"
|
2003-07-12 20:35:47 +00:00
|
|
|
#include "Sprite.h"
|
|
|
|
|
#include "BitmapText.h"
|
2003-05-09 05:56:05 +00:00
|
|
|
|
2003-07-08 18:50:24 +00:00
|
|
|
#define NUM_UNLOCKS 30
|
2003-05-09 05:56:05 +00:00
|
|
|
|
|
|
|
|
class Course;
|
2003-01-08 23:43:54 +00:00
|
|
|
|
|
|
|
|
class ScreenUnlock : public ScreenAttract
|
|
|
|
|
{
|
|
|
|
|
public:
|
2003-05-09 05:56:05 +00:00
|
|
|
ScreenUnlock();
|
|
|
|
|
protected:
|
|
|
|
|
BitmapText PointsUntilNextUnlock;
|
2003-07-08 18:50:24 +00:00
|
|
|
Sprite Unlocks[NUM_UNLOCKS]; // support 30 unlocks right now
|
2003-07-16 13:13:26 +00:00
|
|
|
BitmapText item[NUM_UNLOCKS]; // for scrolling text
|
|
|
|
|
|
|
|
|
|
void BreakLine(CString& line); // used in scrollingtext
|
2003-07-03 17:34:46 +00:00
|
|
|
};
|