add ActiveAttackList
This commit is contained in:
@@ -0,0 +1 @@
|
|||||||
|
Common normal
|
||||||
@@ -1097,38 +1097,14 @@ LyricsReverseY=100
|
|||||||
LyricsOneReverseX=320
|
LyricsOneReverseX=320
|
||||||
LyricsOneReverseY=35
|
LyricsOneReverseY=35
|
||||||
LyricsDefaultColor=0,1,0,1
|
LyricsDefaultColor=0,1,0,1
|
||||||
ActiveItemsP1X=0
|
ActiveAttackListP1X=
|
||||||
ActiveItemsP1Y=0
|
ActiveAttackListP1Y=
|
||||||
ActiveItemsP1OnCommand=
|
ActiveAttackListP1OnCommand=hidden,1
|
||||||
ActiveItemsP1OffCommand=
|
ActiveAttackListP1OffCommand=
|
||||||
ActiveItemsP1ReverseX=0
|
ActiveAttackListP2X=
|
||||||
ActiveItemsP1ReverseY=0
|
ActiveAttackListP2Y=
|
||||||
ActiveItemsP1ReverseOnCommand=
|
ActiveAttackListP2OnCommand=hidden,1
|
||||||
ActiveItemsP1ReverseOffCommand=
|
ActiveAttackListP2OffCommand=
|
||||||
ActiveItemsP1ExtraX=0
|
|
||||||
ActiveItemsP1ExtraY=0
|
|
||||||
ActiveItemsP1ExtraOnCommand=
|
|
||||||
ActiveItemsP1ExtraOffCommand=
|
|
||||||
ActiveItemsP1ExtraReverseX=0
|
|
||||||
ActiveItemsP1ExtraReverseY=0
|
|
||||||
ActiveItemsP1ExtraReverseOnCommand=
|
|
||||||
ActiveItemsP1ExtraReverseOffCommand=
|
|
||||||
ActiveItemsP2X=0
|
|
||||||
ActiveItemsP2Y=0
|
|
||||||
ActiveItemsP2OnCommand=
|
|
||||||
ActiveItemsP2OffCommand=
|
|
||||||
ActiveItemsP2ReverseX=0
|
|
||||||
ActiveItemsP2ReverseY=0
|
|
||||||
ActiveItemsP2ReverseOnCommand=
|
|
||||||
ActiveItemsP2ReverseOffCommand=
|
|
||||||
ActiveItemsP2ExtraX=0
|
|
||||||
ActiveItemsP2ExtraY=0
|
|
||||||
ActiveItemsP2ExtraOnCommand=
|
|
||||||
ActiveItemsP2ExtraOffCommand=
|
|
||||||
ActiveItemsP2ExtraReverseX=0
|
|
||||||
ActiveItemsP2ExtraReverseY=0
|
|
||||||
ActiveItemsP2ExtraReverseOnCommand=
|
|
||||||
ActiveItemsP2ExtraReverseOffCommand=
|
|
||||||
SurviveTimeX=320
|
SurviveTimeX=320
|
||||||
SurviveTimeY=340
|
SurviveTimeY=340
|
||||||
SurviveTimeOnCommand=sleep,0.3;linear,0.3;diffusealpha,1;sleep,3.5;linear,0.5;diffusealpha,0
|
SurviveTimeOnCommand=sleep,0.3;linear,0.3;diffusealpha,1;sleep,3.5;linear,0.5;diffusealpha,0
|
||||||
|
|||||||
@@ -0,0 +1,61 @@
|
|||||||
|
#include "global.h"
|
||||||
|
/*
|
||||||
|
-----------------------------------------------------------------------------
|
||||||
|
File: ActiveAttackList.h
|
||||||
|
|
||||||
|
Desc: A graphic displayed in the ActiveAttackList during Dancing.
|
||||||
|
|
||||||
|
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
|
||||||
|
Chris Danford
|
||||||
|
-----------------------------------------------------------------------------
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "ActiveAttackList.h"
|
||||||
|
#include "RageUtil.h"
|
||||||
|
#include "GameState.h"
|
||||||
|
#include "ThemeManager.h"
|
||||||
|
#include "Inventory.h"
|
||||||
|
#include "RageTimer.h"
|
||||||
|
|
||||||
|
|
||||||
|
ActiveAttackList::ActiveAttackList()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
void ActiveAttackList::Init( PlayerNumber pn )
|
||||||
|
{
|
||||||
|
m_PlayerNumber = pn;
|
||||||
|
}
|
||||||
|
|
||||||
|
void ActiveAttackList::Update( float fDelta )
|
||||||
|
{
|
||||||
|
BitmapText::Update( fDelta );
|
||||||
|
|
||||||
|
// refresh text only once every second
|
||||||
|
float fNowSeconds = RageTimer::GetTimeSinceStart();
|
||||||
|
float fLastSeconds = RageTimer::GetTimeSinceStart() - fDelta;
|
||||||
|
|
||||||
|
if( (int)fNowSeconds != (int)fLastSeconds )
|
||||||
|
{
|
||||||
|
CString s;
|
||||||
|
|
||||||
|
const AttackArray& attacks = GAMESTATE->m_ActiveAttacks[m_PlayerNumber]; // NUM_INVENTORY_SLOTS
|
||||||
|
|
||||||
|
// clear all lines, then add all active attacks
|
||||||
|
for( int i=0; i<attacks.size(); i++ )
|
||||||
|
{
|
||||||
|
const Attack& attack = attacks[i];
|
||||||
|
|
||||||
|
if( !attack.bOn )
|
||||||
|
continue; /* hasn't started yet */
|
||||||
|
|
||||||
|
CString sDisplayText = attack.sModifier;
|
||||||
|
if( s.empty() )
|
||||||
|
s = sDisplayText;
|
||||||
|
else
|
||||||
|
s = sDisplayText + "\n" + s;
|
||||||
|
}
|
||||||
|
|
||||||
|
this->SetText( s ); // BitmapText will not rebuild vertices if these strings are the same.
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,32 @@
|
|||||||
|
#ifndef _ActiveAttackList_H_
|
||||||
|
#define _ActiveAttackList_H_
|
||||||
|
/*
|
||||||
|
-----------------------------------------------------------------------------
|
||||||
|
File: ActiveAttackList.h
|
||||||
|
|
||||||
|
Desc: A graphic displayed in the ActiveAttackList during Dancing.
|
||||||
|
|
||||||
|
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
|
||||||
|
Chris Danford
|
||||||
|
-----------------------------------------------------------------------------
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "BitmapText.h"
|
||||||
|
#include "PlayerNumber.h"
|
||||||
|
|
||||||
|
|
||||||
|
class ActiveAttackList : public BitmapText
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
ActiveAttackList();
|
||||||
|
|
||||||
|
void Init( PlayerNumber pn );
|
||||||
|
|
||||||
|
virtual void Update( float fDelta );
|
||||||
|
|
||||||
|
protected:
|
||||||
|
|
||||||
|
PlayerNumber m_PlayerNumber;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
||||||
@@ -184,11 +184,11 @@ void MenuElements::DrawTopLayer()
|
|||||||
|
|
||||||
m_autoHeader->Draw();
|
m_autoHeader->Draw();
|
||||||
m_sprStyleIcon.Draw();
|
m_sprStyleIcon.Draw();
|
||||||
|
m_autoFooter->Draw();
|
||||||
for( int p=0; p<NUM_PLAYERS; p++ )
|
for( int p=0; p<NUM_PLAYERS; p++ )
|
||||||
m_MemoryCardDisplay[p].Draw();
|
m_MemoryCardDisplay[p].Draw();
|
||||||
if( m_bTimerEnabled )
|
if( m_bTimerEnabled )
|
||||||
m_MenuTimer->Draw();
|
m_MenuTimer->Draw();
|
||||||
m_autoFooter->Draw();
|
|
||||||
m_textHelp->Draw();
|
m_textHelp->Draw();
|
||||||
m_In.Draw();
|
m_In.Draw();
|
||||||
m_Out.Draw();
|
m_Out.Draw();
|
||||||
|
|||||||
@@ -552,6 +552,7 @@ bool PlayerOptions::IsHandicapForSong( Song* pSong )
|
|||||||
if( m_bTransforms[TRANSFORM_NOQUADS] ) return true;
|
if( m_bTransforms[TRANSFORM_NOQUADS] ) return true;
|
||||||
if( m_bTransforms[TRANSFORM_PLANTED] ) return true;
|
if( m_bTransforms[TRANSFORM_PLANTED] ) return true;
|
||||||
if( m_bTransforms[TRANSFORM_TWISTER] ) return true;
|
if( m_bTransforms[TRANSFORM_TWISTER] ) return true;
|
||||||
|
if( m_bTransforms[TRANSFORM_ECHO] ) return true;
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -593,6 +593,16 @@ void ScreenGameplay::Init()
|
|||||||
m_textSongOptions.SetText( GAMESTATE->m_SongOptions.GetString() );
|
m_textSongOptions.SetText( GAMESTATE->m_SongOptions.GetString() );
|
||||||
this->AddChild( &m_textSongOptions );
|
this->AddChild( &m_textSongOptions );
|
||||||
|
|
||||||
|
{
|
||||||
|
FOREACH_EnabledPlayer( pn )
|
||||||
|
{
|
||||||
|
m_ActiveAttackList[pn].LoadFromFont( THEME->GetPathF(m_sName,"ActiveAttackList") );
|
||||||
|
m_ActiveAttackList[pn].Init( pn );
|
||||||
|
m_ActiveAttackList[pn].SetName( ssprintf("ActiveAttackListP%d",pn+1) );
|
||||||
|
SET_XY( m_ActiveAttackList[pn] );
|
||||||
|
this->AddChild( &m_ActiveAttackList[pn] );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -2244,6 +2254,7 @@ void ScreenGameplay::TweenOnScreen()
|
|||||||
if( m_pSecondaryScoreDisplay[p] )
|
if( m_pSecondaryScoreDisplay[p] )
|
||||||
ON_COMMAND( *m_pSecondaryScoreDisplay[p] );
|
ON_COMMAND( *m_pSecondaryScoreDisplay[p] );
|
||||||
ON_COMMAND( m_textPlayerOptions[p] );
|
ON_COMMAND( m_textPlayerOptions[p] );
|
||||||
|
ON_COMMAND( m_ActiveAttackList[p] );
|
||||||
ON_COMMAND( m_DifficultyIcon[p] );
|
ON_COMMAND( m_DifficultyIcon[p] );
|
||||||
}
|
}
|
||||||
m_Overlay.PlayCommand("On");
|
m_Overlay.PlayCommand("On");
|
||||||
@@ -2276,6 +2287,7 @@ void ScreenGameplay::TweenOffScreen()
|
|||||||
if( m_pSecondaryScoreDisplay[p] )
|
if( m_pSecondaryScoreDisplay[p] )
|
||||||
OFF_COMMAND( *m_pSecondaryScoreDisplay[p] );
|
OFF_COMMAND( *m_pSecondaryScoreDisplay[p] );
|
||||||
OFF_COMMAND( m_textPlayerOptions[p] );
|
OFF_COMMAND( m_textPlayerOptions[p] );
|
||||||
|
OFF_COMMAND( m_ActiveAttackList[p] );
|
||||||
OFF_COMMAND( m_DifficultyIcon[p] );
|
OFF_COMMAND( m_DifficultyIcon[p] );
|
||||||
}
|
}
|
||||||
m_Overlay.PlayCommand("Off");
|
m_Overlay.PlayCommand("Off");
|
||||||
|
|||||||
@@ -31,6 +31,7 @@ class Inventory;
|
|||||||
#include "Character.h"
|
#include "Character.h"
|
||||||
#include "Attack.h"
|
#include "Attack.h"
|
||||||
#include "MeterDisplay.h"
|
#include "MeterDisplay.h"
|
||||||
|
#include "ActiveAttackList.h"
|
||||||
|
|
||||||
// messages sent by Combo
|
// messages sent by Combo
|
||||||
const ScreenMessage SM_PlayToasty = ScreenMessage(SM_User+104);
|
const ScreenMessage SM_PlayToasty = ScreenMessage(SM_User+104);
|
||||||
@@ -132,6 +133,7 @@ protected:
|
|||||||
ScoreKeeper* m_pSecondaryScoreKeeper[NUM_PLAYERS];
|
ScoreKeeper* m_pSecondaryScoreKeeper[NUM_PLAYERS];
|
||||||
BitmapText m_textPlayerOptions[NUM_PLAYERS];
|
BitmapText m_textPlayerOptions[NUM_PLAYERS];
|
||||||
BitmapText m_textSongOptions;
|
BitmapText m_textSongOptions;
|
||||||
|
ActiveAttackList m_ActiveAttackList[NUM_PLAYERS];
|
||||||
|
|
||||||
BitmapText m_textDebug;
|
BitmapText m_textDebug;
|
||||||
|
|
||||||
|
|||||||
@@ -63,12 +63,14 @@ void HighScoreWheelItem::Load( int iRankIndex, const HighScore& hs )
|
|||||||
m_textRank.SetName( "Rank" );
|
m_textRank.SetName( "Rank" );
|
||||||
m_textRank.LoadFromFont( THEME->GetPathF(m_sName,"rank") );
|
m_textRank.LoadFromFont( THEME->GetPathF(m_sName,"rank") );
|
||||||
m_textRank.SetText( ssprintf("%d", iRankIndex+1) );
|
m_textRank.SetText( ssprintf("%d", iRankIndex+1) );
|
||||||
|
m_textRank.SetShadowLength( 2 );
|
||||||
this->AddChild( &m_textRank );
|
this->AddChild( &m_textRank );
|
||||||
SET_XY_AND_ON_COMMAND( m_textRank );
|
SET_XY_AND_ON_COMMAND( m_textRank );
|
||||||
|
|
||||||
m_textName.SetName( "Name" );
|
m_textName.SetName( "Name" );
|
||||||
m_textName.LoadFromFont( THEME->GetPathF(m_sName,"name") );
|
m_textName.LoadFromFont( THEME->GetPathF(m_sName,"name") );
|
||||||
m_textName.SetText( hs.GetDisplayName() );
|
m_textName.SetText( hs.GetDisplayName() );
|
||||||
|
m_textName.SetShadowLength( 2 );
|
||||||
this->AddChild( &m_textName );
|
this->AddChild( &m_textName );
|
||||||
SET_XY_AND_ON_COMMAND( m_textName );
|
SET_XY_AND_ON_COMMAND( m_textName );
|
||||||
|
|
||||||
@@ -78,6 +80,7 @@ void HighScoreWheelItem::Load( int iRankIndex, const HighScore& hs )
|
|||||||
m_textScore.SetText( ssprintf("%.2f%%", hs.fPercentDP*100) );
|
m_textScore.SetText( ssprintf("%.2f%%", hs.fPercentDP*100) );
|
||||||
else
|
else
|
||||||
m_textScore.SetText( ssprintf("%i", hs.iScore) );
|
m_textScore.SetText( ssprintf("%i", hs.iScore) );
|
||||||
|
m_textScore.SetShadowLength( 2 );
|
||||||
this->AddChild( &m_textScore );
|
this->AddChild( &m_textScore );
|
||||||
SET_XY_AND_ON_COMMAND( m_textScore );
|
SET_XY_AND_ON_COMMAND( m_textScore );
|
||||||
}
|
}
|
||||||
|
|||||||
+56
-29
@@ -1,5 +1,5 @@
|
|||||||
# Microsoft Developer Studio Project File - Name="StepMania" - Package Owner=<4>
|
# Microsoft Developer Studio Project File - Name="StepMania" - Package Owner=<4>
|
||||||
# Microsoft Developer Studio Generated Build File, Format Version 6.00
|
# Microsoft Developer Studio Generated Build File, Format Version 60000
|
||||||
# ** DO NOT EDIT **
|
# ** DO NOT EDIT **
|
||||||
|
|
||||||
# TARGTYPE "Win32 (x86) Application" 0x0101
|
# TARGTYPE "Win32 (x86) Application" 0x0101
|
||||||
@@ -62,10 +62,10 @@ LINK32=link.exe
|
|||||||
# SUBTRACT LINK32 /verbose /profile /pdb:none /incremental:no /nodefaultlib
|
# SUBTRACT LINK32 /verbose /profile /pdb:none /incremental:no /nodefaultlib
|
||||||
# Begin Special Build Tool
|
# Begin Special Build Tool
|
||||||
IntDir=.\../Debug6
|
IntDir=.\../Debug6
|
||||||
TargetDir=\stepmania2\stepmania\Program
|
TargetDir=\stepmania\stepmania\Program
|
||||||
TargetName=StepMania-debug
|
TargetName=StepMania-debug
|
||||||
SOURCE="$(InputPath)"
|
SOURCE="$(InputPath)"
|
||||||
PreLink_Cmds=disasm\verinc cl /Zl /nologo /c verstub.cpp /Fo$(IntDir)\
|
PreLink_Cmds=disasm\verinc cl /Zl /nologo /c verstub.cpp /Fo$(IntDir)\
|
||||||
PostBuild_Cmds=disasm\mapconv $(IntDir)\$(TargetName).map $(TargetDir)\StepMania.vdi
|
PostBuild_Cmds=disasm\mapconv $(IntDir)\$(TargetName).map $(TargetDir)\StepMania.vdi
|
||||||
# End Special Build Tool
|
# End Special Build Tool
|
||||||
|
|
||||||
@@ -82,23 +82,27 @@ PostBuild_Cmds=disasm\mapconv $(IntDir)\$(TargetName).map $(TargetDir)\StepMania
|
|||||||
# PROP Intermediate_Dir "../Debug_Xbox"
|
# PROP Intermediate_Dir "../Debug_Xbox"
|
||||||
# PROP Ignore_Export_Lib 0
|
# PROP Ignore_Export_Lib 0
|
||||||
# PROP Target_Dir ""
|
# PROP Target_Dir ""
|
||||||
XBCP=xbecopy.exe
|
CPP=cl.exe
|
||||||
# ADD BASE XBCP /NOLOGO
|
# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_XBOX" /D "_DEBUG" /YX /FD /G6 /Ztmp /c
|
||||||
# ADD XBCP /NOLOGO
|
# ADD CPP /nologo /W3 /Gm /GX /Zi /Od /I "." /I "SDL-1.2.5\include" /I "SDL_image-1.2" /I "plib-1.6.0" /I "SDL_sound-1.0.0" /I "vorbis" /D "WIN32" /D "_DEBUG" /D "_XBOX" /D "OGG_ONLY" /D "DEBUG" /FR /YX"global.h" /FD /G6 /Ztmp /c
|
||||||
XBE=imagebld.exe
|
BSC32=bscmake.exe
|
||||||
# ADD BASE XBE /nologo /stack:0x10000 /debug
|
# ADD BASE BSC32 /nologo
|
||||||
# ADD XBE /nologo /stack:0x10000 /debug /out:"../default.xbe"
|
# ADD BSC32 /nologo
|
||||||
LINK32=link.exe
|
LINK32=link.exe
|
||||||
# ADD BASE LINK32 xapilibd.lib d3d8d.lib d3dx8d.lib xgraphicsd.lib dsoundd.lib dmusicd.lib xnetd.lib xboxkrnl.lib /nologo /incremental:no /debug /machine:I386 /subsystem:xbox /fixed:no /TMP
|
# ADD BASE LINK32 xapilibd.lib d3d8d.lib d3dx8d.lib xgraphicsd.lib dsoundd.lib dmusicd.lib xnetd.lib xboxkrnl.lib /nologo /incremental:no /debug /machine:I386 /subsystem:xbox /fixed:no /TMP
|
||||||
# ADD LINK32 $(intdir)\verstub.obj xapilibd.lib d3d8d.lib d3dx8d.lib xgraphicsd.lib dsoundd.lib dmusicd.lib xnetd.lib xboxkrnl.lib /nologo /map /debug /machine:I386 /nodefaultlib:"libcd" /nodefaultlib:"libcmt" /out:"../StepManiaXbox-debug.exe" /subsystem:xbox /fixed:no /TMP
|
# ADD LINK32 $(intdir)\verstub.obj xapilibd.lib d3d8d.lib d3dx8d.lib xgraphicsd.lib dsoundd.lib dmusicd.lib xnetd.lib xboxkrnl.lib /nologo /map /debug /machine:I386 /nodefaultlib:"libcd" /nodefaultlib:"libcmt" /out:"../StepManiaXbox-debug.exe" /subsystem:xbox /fixed:no /TMP
|
||||||
# SUBTRACT LINK32 /incremental:no
|
# SUBTRACT LINK32 /incremental:no
|
||||||
BSC32=bscmake.exe
|
XBE=imagebld.exe
|
||||||
# ADD BASE BSC32 /nologo
|
# ADD BASE XBE /nologo /stack:0x10000 /debug
|
||||||
# ADD BSC32 /nologo
|
# ADD XBE /nologo /stack:0x10000 /debug /out:"../default.xbe"
|
||||||
CPP=cl.exe
|
XBCP=xbecopy.exe
|
||||||
# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_XBOX" /D "_DEBUG" /YX /FD /G6 /Ztmp /c
|
# ADD BASE XBCP /NOLOGO
|
||||||
# ADD CPP /nologo /W3 /Gm /GX /Zi /Od /I "." /I "SDL-1.2.5\include" /I "SDL_image-1.2" /I "plib-1.6.0" /I "SDL_sound-1.0.0" /I "vorbis" /D "WIN32" /D "_DEBUG" /D "_XBOX" /D "OGG_ONLY" /D "DEBUG" /FR /YX"global.h" /FD /G6 /Ztmp /c
|
# ADD XBCP /NOLOGO
|
||||||
# Begin Special Build Tool
|
# Begin Special Build Tool
|
||||||
|
IntDir=.\../Debug_Xbox
|
||||||
|
TargetDir=\stepmania\stepmania
|
||||||
|
TargetName=default
|
||||||
|
SOURCE="$(InputPath)"
|
||||||
PreLink_Cmds=disasm\verinc cl /Zl /nologo /c PostBuild_Cmds=disasm\mapconv $(IntDir)\$(TargetName).map $(TargetDir)\StepMania.vdi ia32.vdi
|
PreLink_Cmds=disasm\verinc cl /Zl /nologo /c PostBuild_Cmds=disasm\mapconv $(IntDir)\$(TargetName).map $(TargetDir)\StepMania.vdi ia32.vdi
|
||||||
# End Special Build Tool
|
# End Special Build Tool
|
||||||
|
|
||||||
@@ -135,10 +139,10 @@ LINK32=link.exe
|
|||||||
# SUBTRACT LINK32 /verbose /pdb:none /debug
|
# SUBTRACT LINK32 /verbose /pdb:none /debug
|
||||||
# Begin Special Build Tool
|
# Begin Special Build Tool
|
||||||
IntDir=.\../Release6
|
IntDir=.\../Release6
|
||||||
TargetDir=\stepmania2\stepmania\Program
|
TargetDir=\stepmania\stepmania\Program
|
||||||
TargetName=StepMania
|
TargetName=StepMania
|
||||||
SOURCE="$(InputPath)"
|
SOURCE="$(InputPath)"
|
||||||
PreLink_Cmds=disasm\verinc cl /Zl /nologo /c verstub.cpp /Fo$(IntDir)\
|
PreLink_Cmds=disasm\verinc cl /Zl /nologo /c verstub.cpp /Fo$(IntDir)\
|
||||||
PostBuild_Cmds=disasm\mapconv $(IntDir)\$(TargetName).map $(TargetDir)\StepMania.vdi
|
PostBuild_Cmds=disasm\mapconv $(IntDir)\$(TargetName).map $(TargetDir)\StepMania.vdi
|
||||||
# End Special Build Tool
|
# End Special Build Tool
|
||||||
|
|
||||||
@@ -156,24 +160,28 @@ PostBuild_Cmds=disasm\mapconv $(IntDir)\$(TargetName).map $(TargetDir)\StepMania
|
|||||||
# PROP Intermediate_Dir "../Release_Xbox"
|
# PROP Intermediate_Dir "../Release_Xbox"
|
||||||
# PROP Ignore_Export_Lib 0
|
# PROP Ignore_Export_Lib 0
|
||||||
# PROP Target_Dir ""
|
# PROP Target_Dir ""
|
||||||
XBCP=xbecopy.exe
|
CPP=cl.exe
|
||||||
# ADD BASE XBCP /NOLOGO
|
# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /I "." /I "SDL-1.2.5\include" /I "SDL_image-1.2" /I "plib-1.6.0" /D "WIN32" /D "_XBOX" /D "_DEBUG" /Fr /YX"global.h" /FD /c
|
||||||
# ADD XBCP /NOLOGO
|
# ADD CPP /nologo /MT /W3 /GX /O2 /I "." /I "SDL-1.2.5\include" /I "SDL_image-1.2" /I "plib-1.6.0" /I "SDL_sound-1.0.0" /I "vorbis" /D "WIN32" /D "NDEBUG" /D "_XBOX" /FR /YX /FD /c
|
||||||
XBE=imagebld.exe
|
BSC32=bscmake.exe
|
||||||
# ADD BASE XBE /nologo /stack:0x10000 /debug
|
# ADD BASE BSC32 /nologo
|
||||||
# ADD XBE /nologo /testid:"123456" /stack:0x10000 /debug /out:"../default.xbe"
|
# ADD BSC32 /nologo
|
||||||
LINK32=link.exe
|
LINK32=link.exe
|
||||||
# ADD BASE LINK32 $(intdir)\verstub.obj xapilibd.lib d3d8d.lib d3dx8d.lib xgraphicsd.lib dsoundd.lib dmusicd.lib xnetd.lib xboxkrnl.lib /nologo /pdb:"../debug6/StepMania-debug.pdb" /map /debug /machine:IX86 /nodefaultlib:"libcmtd.lib" /out:"../StepMania-debug.exe"
|
# ADD BASE LINK32 $(intdir)\verstub.obj xapilibd.lib d3d8d.lib d3dx8d.lib xgraphicsd.lib dsoundd.lib dmusicd.lib xnetd.lib xboxkrnl.lib /nologo /pdb:"../debug6/StepMania-debug.pdb" /map /debug /machine:IX86 /nodefaultlib:"libcmtd.lib" /out:"../StepMania-debug.exe"
|
||||||
# SUBTRACT BASE LINK32 /verbose /profile /pdb:none /incremental:no /nodefaultlib
|
# SUBTRACT BASE LINK32 /verbose /profile /pdb:none /incremental:no /nodefaultlib
|
||||||
# ADD LINK32 $(intdir)\verstub.obj xapilib.lib d3d8.lib d3dx8.lib xgraphics.lib dsound.lib dmusic.lib xnet.lib xboxkrnl.lib libcmt.lib /nologo /incremental:no /map /machine:I386 /nodefaultlib:"libc" /nodefaultlib:"libcmtd" /out:"../StepManiaXbox.exe" /subsystem:xbox /fixed:no /TMP /OPT:REF
|
# ADD LINK32 $(intdir)\verstub.obj xapilib.lib d3d8.lib d3dx8.lib xgraphics.lib dsound.lib dmusic.lib xnet.lib xboxkrnl.lib libcmt.lib /nologo /incremental:no /map /machine:I386 /nodefaultlib:"libc" /nodefaultlib:"libcmtd" /out:"../StepManiaXbox.exe" /subsystem:xbox /fixed:no /TMP /OPT:REF
|
||||||
# SUBTRACT LINK32 /pdb:none /debug
|
# SUBTRACT LINK32 /pdb:none /debug
|
||||||
BSC32=bscmake.exe
|
XBE=imagebld.exe
|
||||||
# ADD BASE BSC32 /nologo
|
# ADD BASE XBE /nologo /stack:0x10000 /debug
|
||||||
# ADD BSC32 /nologo
|
# ADD XBE /nologo /testid:"123456" /stack:0x10000 /debug /out:"../default.xbe"
|
||||||
CPP=cl.exe
|
XBCP=xbecopy.exe
|
||||||
# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /I "." /I "SDL-1.2.5\include" /I "SDL_image-1.2" /I "plib-1.6.0" /D "WIN32" /D "_XBOX" /D "_DEBUG" /Fr /YX"global.h" /FD /c
|
# ADD BASE XBCP /NOLOGO
|
||||||
# ADD CPP /nologo /MT /W3 /GX /O2 /I "." /I "SDL-1.2.5\include" /I "SDL_image-1.2" /I "plib-1.6.0" /I "SDL_sound-1.0.0" /I "vorbis" /D "WIN32" /D "NDEBUG" /D "_XBOX" /FR /YX /FD /c
|
# ADD XBCP /NOLOGO
|
||||||
# Begin Special Build Tool
|
# Begin Special Build Tool
|
||||||
|
IntDir=.\../Release_Xbox
|
||||||
|
TargetDir=\stepmania\stepmania
|
||||||
|
TargetName=default
|
||||||
|
SOURCE="$(InputPath)"
|
||||||
PreLink_Cmds=disasm\verinc cl /Zl /nologo /c PostBuild_Cmds=disasm\mapconv $(IntDir)\$(TargetName).map $(TargetDir)\StepMania.vdi ia32.vdi
|
PreLink_Cmds=disasm\verinc cl /Zl /nologo /c PostBuild_Cmds=disasm\mapconv $(IntDir)\$(TargetName).map $(TargetDir)\StepMania.vdi ia32.vdi
|
||||||
# End Special Build Tool
|
# End Special Build Tool
|
||||||
|
|
||||||
@@ -3337,6 +3345,25 @@ SOURCE=.\Transition.h
|
|||||||
# PROP Default_Filter ""
|
# PROP Default_Filter ""
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\ActiveAttackList.cpp
|
||||||
|
|
||||||
|
!IF "$(CFG)" == "StepMania - Win32 Debug"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "StepMania - Xbox Debug"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "StepMania - Win32 Release"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "StepMania - Xbox Release"
|
||||||
|
|
||||||
|
!ENDIF
|
||||||
|
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\ActiveAttackList.h
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=.\ArrowEffects.cpp
|
SOURCE=.\ArrowEffects.cpp
|
||||||
|
|
||||||
!IF "$(CFG)" == "StepMania - Win32 Debug"
|
!IF "$(CFG)" == "StepMania - Win32 Debug"
|
||||||
|
|||||||
@@ -1442,6 +1442,12 @@ cl /Zl /nologo /c verstub.cpp /Fo"$(IntDir)"\
|
|||||||
<Filter
|
<Filter
|
||||||
Name="Actors used in Gameplay"
|
Name="Actors used in Gameplay"
|
||||||
Filter="">
|
Filter="">
|
||||||
|
<File
|
||||||
|
RelativePath="ActiveAttackList.cpp">
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="ActiveAttackList.h">
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="ArrowBackdrop.cpp">
|
RelativePath="ArrowBackdrop.cpp">
|
||||||
</File>
|
</File>
|
||||||
@@ -2065,6 +2071,12 @@ cl /Zl /nologo /c verstub.cpp /Fo"$(IntDir)"\
|
|||||||
<File
|
<File
|
||||||
RelativePath="MemoryCardManager.h">
|
RelativePath="MemoryCardManager.h">
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="NetworkSyncManager.cpp">
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="NetworkSyncManager.h">
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="NoteSkinManager.cpp">
|
RelativePath="NoteSkinManager.cpp">
|
||||||
</File>
|
</File>
|
||||||
@@ -2107,6 +2119,12 @@ cl /Zl /nologo /c verstub.cpp /Fo"$(IntDir)"\
|
|||||||
<File
|
<File
|
||||||
RelativePath="UnlockSystem.h">
|
RelativePath="UnlockSystem.h">
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="ezsockets.cpp">
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="ezsockets.h">
|
||||||
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter
|
<Filter
|
||||||
Name="Crypto"
|
Name="Crypto"
|
||||||
|
|||||||
Reference in New Issue
Block a user