|
|
|
@ -27,8 +27,7 @@ bool VirusAttack::OnUserCreate(){ |
|
|
|
|
return true; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
bool VirusAttack::OnUserUpdate(float fElapsedTime){ |
|
|
|
|
// Called once per frame, draws random coloured pixels
|
|
|
|
|
void VirusAttack::HandleDraggingSelection(){ |
|
|
|
|
if(GetMouse(0).bPressed){ |
|
|
|
|
for(std::unique_ptr<Unit>&u:units){ |
|
|
|
|
u->Deselect(); |
|
|
|
@ -51,6 +50,16 @@ bool VirusAttack::OnUserUpdate(float fElapsedTime){ |
|
|
|
|
} |
|
|
|
|
startingDragPos=CONSTANT::UNSELECTED; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void VirusAttack::DrawSelectionRectangle(){ |
|
|
|
|
if(startingDragPos!=CONSTANT::UNSELECTED){ |
|
|
|
|
FillRectDecal(startingDragPos,GetMousePos()-startingDragPos,{255,255,0,128}); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
bool VirusAttack::OnUserUpdate(float fElapsedTime){ |
|
|
|
|
HandleDraggingSelection(); |
|
|
|
|
|
|
|
|
|
for(std::unique_ptr<Unit>&u:units){ |
|
|
|
|
u->Update(fElapsedTime); |
|
|
|
@ -60,9 +69,8 @@ bool VirusAttack::OnUserUpdate(float fElapsedTime){ |
|
|
|
|
u->Draw(this); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if(startingDragPos!=CONSTANT::UNSELECTED){ |
|
|
|
|
FillRectDecal(startingDragPos,GetMousePos()-startingDragPos,{255,255,0,128}); |
|
|
|
|
} |
|
|
|
|
DrawSelectionRectangle(); |
|
|
|
|
|
|
|
|
|
return true; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|