2002-05-01 19:14:55 +00:00
|
|
|
#pragma once
|
|
|
|
|
/*
|
|
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
|
Class: BannerWithFrame
|
|
|
|
|
|
|
|
|
|
Desc: bonus meters and max combo number.
|
|
|
|
|
|
2002-05-19 01:59:48 +00:00
|
|
|
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
|
2002-05-01 19:14:55 +00:00
|
|
|
Chris Danford
|
|
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "ActorFrame.h"
|
|
|
|
|
#include "Sprite.h"
|
|
|
|
|
#include "Banner.h"
|
2002-08-01 20:30:40 +00:00
|
|
|
#include "DifficultyIcon.h"
|
2002-07-27 19:29:51 +00:00
|
|
|
class Song;
|
|
|
|
|
class Course;
|
2002-05-01 19:14:55 +00:00
|
|
|
|
|
|
|
|
class BannerWithFrame : public ActorFrame
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
BannerWithFrame();
|
|
|
|
|
|
2002-08-01 20:30:40 +00:00
|
|
|
void LoadFromSongAndNotes( Song* pSong, Notes* pNotes[NUM_PLAYERS] );
|
2002-05-01 19:14:55 +00:00
|
|
|
void LoadFromSong( Song* pSong );
|
2002-06-14 22:25:22 +00:00
|
|
|
void LoadFromGroup( CString sGroupName );
|
2002-07-27 19:29:51 +00:00
|
|
|
void LoadFromCourse( Course* pCourse );
|
2002-05-01 19:14:55 +00:00
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
Sprite m_sprBannerFrame;
|
|
|
|
|
Banner m_Banner;
|
2002-08-01 20:30:40 +00:00
|
|
|
DifficultyIcon m_Icon[NUM_PLAYERS];
|
2002-05-01 19:14:55 +00:00
|
|
|
};
|