2003-02-21 10:05:13 +00:00
|
|
|
/*
|
2002-05-20 08:59:37 +00:00
|
|
|
-----------------------------------------------------------------------------
|
2002-06-29 11:59:09 +00:00
|
|
|
Class: ScreenEdit
|
2002-05-20 08:59:37 +00:00
|
|
|
|
2002-06-29 11:59:09 +00:00
|
|
|
Desc: Edit, record, playback, or synchronize notes.
|
2002-05-20 08:59:37 +00:00
|
|
|
|
|
|
|
|
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
|
2002-06-29 11:59:09 +00:00
|
|
|
Chris Danford
|
2002-05-20 08:59:37 +00:00
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "Screen.h"
|
|
|
|
|
#include "Sprite.h"
|
2003-04-13 01:09:19 +00:00
|
|
|
#include "Transition.h"
|
2002-05-20 08:59:37 +00:00
|
|
|
#include "BitmapText.h"
|
|
|
|
|
#include "Player.h"
|
2002-12-22 08:51:41 +00:00
|
|
|
#include "RageSound.h"
|
2002-10-08 00:39:31 +00:00
|
|
|
#include "BGAnimation.h"
|
2002-08-13 23:26:46 +00:00
|
|
|
#include "SnapDisplay.h"
|
2004-01-23 08:25:00 +00:00
|
|
|
#include "Background.h"
|
|
|
|
|
#include "Foreground.h"
|
2004-01-26 20:56:58 +00:00
|
|
|
#include "Course.h"
|
2002-05-20 08:59:37 +00:00
|
|
|
|
|
|
|
|
|
2002-09-26 06:05:32 +00:00
|
|
|
const int NUM_ACTION_MENU_ITEMS = 23;
|
|
|
|
|
const int NUM_NAMING_MENU_ITEMS = 6;
|
2002-08-17 06:44:04 +00:00
|
|
|
|
|
|
|
|
|
2002-05-20 08:59:37 +00:00
|
|
|
class ScreenEdit : public Screen
|
|
|
|
|
{
|
|
|
|
|
public:
|
2003-09-27 22:30:51 +00:00
|
|
|
ScreenEdit( CString sName );
|
2002-05-20 08:59:37 +00:00
|
|
|
virtual ~ScreenEdit();
|
|
|
|
|
virtual void Update( float fDeltaTime );
|
|
|
|
|
virtual void DrawPrimitives();
|
|
|
|
|
virtual void Input( const DeviceInput& DeviceI, const InputEventType type, const GameInput &GameI, const MenuInput &MenuI, const StyleInput &StyleI );
|
|
|
|
|
void InputEdit( const DeviceInput& DeviceI, const InputEventType type, const GameInput &GameI, const MenuInput &MenuI, const StyleInput &StyleI );
|
|
|
|
|
void InputRecord( const DeviceInput& DeviceI, const InputEventType type, const GameInput &GameI, const MenuInput &MenuI, const StyleInput &StyleI );
|
|
|
|
|
void InputPlay( const DeviceInput& DeviceI, const InputEventType type, const GameInput &GameI, const MenuInput &MenuI, const StyleInput &StyleI );
|
|
|
|
|
virtual void HandleScreenMessage( const ScreenMessage SM );
|
|
|
|
|
|
|
|
|
|
protected:
|
2002-10-18 01:09:59 +00:00
|
|
|
void TransitionFromRecordToEdit();
|
|
|
|
|
void TransitionToEdit();
|
2004-01-12 09:36:01 +00:00
|
|
|
void PlayTicks();
|
2003-03-05 02:38:17 +00:00
|
|
|
void PlayPreviewMusic();
|
2003-03-30 20:43:30 +00:00
|
|
|
void UpdateTextInfo();
|
2002-10-18 01:09:59 +00:00
|
|
|
|
2002-05-20 08:59:37 +00:00
|
|
|
void OnSnapModeChange();
|
2002-09-26 06:05:32 +00:00
|
|
|
void MenuItemGainFocus( BitmapText* menuitem );
|
|
|
|
|
void MenuItemLoseFocus( BitmapText* menuitem );
|
2002-05-20 08:59:37 +00:00
|
|
|
|
2002-08-23 20:18:29 +00:00
|
|
|
|
2003-02-18 23:15:38 +00:00
|
|
|
enum EditMode { MODE_EDITING, MODE_RECORDING, MODE_PLAYING };
|
2002-07-28 20:28:37 +00:00
|
|
|
EditMode m_EditMode;
|
2002-05-20 08:59:37 +00:00
|
|
|
|
|
|
|
|
Song* m_pSong;
|
2003-08-03 00:13:55 +00:00
|
|
|
Steps* m_pNotes;
|
2002-05-20 08:59:37 +00:00
|
|
|
|
2002-10-08 00:39:31 +00:00
|
|
|
BGAnimation m_BGAnimation;
|
2002-05-20 08:59:37 +00:00
|
|
|
|
2002-10-08 00:39:31 +00:00
|
|
|
NoteField m_NoteFieldEdit;
|
|
|
|
|
SnapDisplay m_SnapDisplay;
|
2002-05-20 08:59:37 +00:00
|
|
|
|
2003-02-18 23:15:38 +00:00
|
|
|
Sprite m_sprHelp;
|
2002-10-08 00:39:31 +00:00
|
|
|
BitmapText m_textHelp;
|
2003-02-18 23:15:38 +00:00
|
|
|
Sprite m_sprInfo;
|
|
|
|
|
BitmapText m_textInfo; // status information that changes
|
2002-05-20 08:59:37 +00:00
|
|
|
|
|
|
|
|
// keep track of where we are and what we're doing
|
2002-08-01 20:30:40 +00:00
|
|
|
float m_fTrailingBeat; // this approaches GAMESTATE->m_fSongBeat, which is the actual beat
|
2002-08-22 04:05:13 +00:00
|
|
|
/* The location we were at when shift was pressed, or
|
|
|
|
|
* -1 when shift isn't pressed: */
|
|
|
|
|
float shiftAnchor;
|
2002-05-20 08:59:37 +00:00
|
|
|
|
2002-06-29 11:59:09 +00:00
|
|
|
NoteData m_Clipboard;
|
2002-05-20 08:59:37 +00:00
|
|
|
|
2003-01-02 08:13:34 +00:00
|
|
|
RageSound m_soundChangeLine;
|
|
|
|
|
RageSound m_soundChangeSnap;
|
|
|
|
|
RageSound m_soundMarker;
|
2002-05-20 08:59:37 +00:00
|
|
|
|
2003-04-13 01:09:19 +00:00
|
|
|
Transition m_In;
|
|
|
|
|
Transition m_Out;
|
2002-05-20 08:59:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
// for MODE_RECORD
|
|
|
|
|
|
2002-06-29 11:59:09 +00:00
|
|
|
NoteField m_NoteFieldRecord;
|
2002-05-20 08:59:37 +00:00
|
|
|
|
|
|
|
|
// for MODE_PLAY
|
2004-01-26 20:56:58 +00:00
|
|
|
void SetupCourseAttacks();
|
2002-08-13 23:26:46 +00:00
|
|
|
Player m_Player;
|
2004-01-23 08:25:00 +00:00
|
|
|
Background m_Background;
|
|
|
|
|
Foreground m_Foreground;
|
2004-01-26 20:56:58 +00:00
|
|
|
Course *m_pAttacksFromCourse;
|
2002-05-20 08:59:37 +00:00
|
|
|
|
|
|
|
|
// for MODE_RECORD and MODE_PLAY
|
|
|
|
|
|
2002-08-17 06:44:04 +00:00
|
|
|
Quad m_rectRecordBack;
|
2002-12-22 08:51:41 +00:00
|
|
|
RageSound m_soundMusic;
|
2002-08-17 06:44:04 +00:00
|
|
|
|
2003-01-02 08:13:34 +00:00
|
|
|
RageSound m_soundAssistTick;
|
2002-08-29 04:56:03 +00:00
|
|
|
|
2003-02-18 23:15:38 +00:00
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
enum MainMenuChoice {
|
|
|
|
|
edit_notes_statistics,
|
|
|
|
|
play_whole_song,
|
2003-03-16 00:05:23 +00:00
|
|
|
play_current_beat_to_end,
|
2003-02-18 23:15:38 +00:00
|
|
|
save,
|
2004-01-24 20:36:09 +00:00
|
|
|
reload,
|
2003-02-18 23:15:38 +00:00
|
|
|
player_options,
|
|
|
|
|
song_options,
|
|
|
|
|
edit_song_info,
|
|
|
|
|
edit_bg_change,
|
|
|
|
|
play_preview_music,
|
2004-01-23 08:25:00 +00:00
|
|
|
preferences,
|
2003-02-18 23:15:38 +00:00
|
|
|
exit,
|
|
|
|
|
NUM_MAIN_MENU_CHOICES
|
|
|
|
|
};
|
|
|
|
|
void HandleMainMenuChoice( MainMenuChoice c, int* iAnswers );
|
|
|
|
|
|
|
|
|
|
enum AreaMenuChoice {
|
|
|
|
|
cut,
|
|
|
|
|
copy,
|
2003-02-22 00:48:38 +00:00
|
|
|
paste_at_current_beat,
|
|
|
|
|
paste_at_begin_marker,
|
2003-02-18 23:15:38 +00:00
|
|
|
clear,
|
|
|
|
|
quantize,
|
2003-03-13 09:20:21 +00:00
|
|
|
turn,
|
2003-02-18 23:15:38 +00:00
|
|
|
transform,
|
2003-03-13 21:44:14 +00:00
|
|
|
alter,
|
2003-09-07 22:28:46 +00:00
|
|
|
tempo,
|
2003-02-18 23:15:38 +00:00
|
|
|
play,
|
|
|
|
|
record,
|
|
|
|
|
insert_and_shift,
|
|
|
|
|
delete_and_shift,
|
2003-11-03 08:44:49 +00:00
|
|
|
convert_beat_to_pause,
|
|
|
|
|
convert_pause_to_beat,
|
2003-02-18 23:15:38 +00:00
|
|
|
NUM_AREA_MENU_CHOICES
|
|
|
|
|
};
|
|
|
|
|
void HandleAreaMenuChoice( AreaMenuChoice c, int* iAnswers );
|
2003-03-13 21:44:14 +00:00
|
|
|
enum TurnType { left, right, mirror, shuffle, super_shuffle, NUM_TURN_TYPES };
|
2004-01-12 03:47:55 +00:00
|
|
|
enum TransformType { noholds, nomines, little, wide, big, quick, skippy, mines, echo, planted, stomp, twister, nojumps, nohands, noquads, NUM_TRANSFORM_TYPES };
|
2003-12-31 07:49:30 +00:00
|
|
|
enum AlterType { backwards, swap_sides, copy_left_to_right, copy_right_to_left, clear_left, clear_right, collapse_to_one, collapse_left, shift_left, shift_right, NUM_ALTER_TYPES };
|
2003-11-03 08:44:49 +00:00
|
|
|
// MD 11/02/03 - added additional tempo adjusts which make "sense"
|
|
|
|
|
enum TempoType { compress_2x, compress_3_2, compress_4_3, expand_4_3, expand_3_2, expand_2x, NUM_TEMPO_TYPES };
|
2003-02-18 23:15:38 +00:00
|
|
|
|
|
|
|
|
enum EditNotesStatisticsChoice {
|
|
|
|
|
difficulty,
|
|
|
|
|
meter,
|
2003-12-22 18:27:32 +00:00
|
|
|
predict_meter,
|
2003-02-18 23:15:38 +00:00
|
|
|
description,
|
|
|
|
|
tap_notes,
|
|
|
|
|
hold_notes,
|
|
|
|
|
stream,
|
|
|
|
|
voltage,
|
|
|
|
|
air,
|
|
|
|
|
freeze,
|
|
|
|
|
chaos,
|
|
|
|
|
NUM_EDIT_NOTES_STATISTICS_CHOICES
|
|
|
|
|
};
|
|
|
|
|
void HandleEditNotesStatisticsChoice( EditNotesStatisticsChoice c, int* iAnswers );
|
|
|
|
|
|
|
|
|
|
enum EditSongInfoChoice {
|
|
|
|
|
main_title,
|
|
|
|
|
sub_title,
|
|
|
|
|
artist,
|
2003-06-23 02:24:13 +00:00
|
|
|
credit,
|
2003-02-18 23:15:38 +00:00
|
|
|
main_title_transliteration,
|
|
|
|
|
sub_title_transliteration,
|
|
|
|
|
artist_transliteration,
|
|
|
|
|
NUM_EDIT_SONG_INFO_CHOICES
|
|
|
|
|
};
|
|
|
|
|
void HandleEditSongInfoChoice( EditSongInfoChoice c, int* iAnswers );
|
|
|
|
|
|
2003-03-15 19:25:37 +00:00
|
|
|
enum BGChangeChoice {
|
2003-04-14 04:10:01 +00:00
|
|
|
rate,
|
|
|
|
|
fade_last,
|
|
|
|
|
rewind_movie,
|
|
|
|
|
loop,
|
2003-03-15 19:25:37 +00:00
|
|
|
add_random,
|
|
|
|
|
add_song_bganimation,
|
|
|
|
|
add_song_movie,
|
2003-04-13 23:22:27 +00:00
|
|
|
add_song_still,
|
2003-03-15 19:25:37 +00:00
|
|
|
add_global_random_movie,
|
|
|
|
|
add_global_bganimation,
|
|
|
|
|
add_global_visualization,
|
|
|
|
|
delete_change,
|
|
|
|
|
NUM_BGCHANGE_CHOICES
|
|
|
|
|
};
|
2004-01-23 08:25:00 +00:00
|
|
|
|
|
|
|
|
enum PrefsChoice {
|
|
|
|
|
pref_show_bgs_play,
|
|
|
|
|
NUM_PREFS_CHOICES
|
|
|
|
|
};
|
2003-03-15 19:25:37 +00:00
|
|
|
void HandleBGChangeChoice( BGChangeChoice c, int* iAnswers );
|
|
|
|
|
|
2002-05-20 08:59:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|