Last active
November 27, 2022 10:14
-
-
Save Akira13641/825695fba6162e6aa61e7d7c51498dd4 to your computer and use it in GitHub Desktop.
The C++ version of "Borland Swat", a simple 2D whack-a-mole game (with bugs, not moles, hence "Swat") included as a C++ Builder 6 example program
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//---------------------------------------------------------------------------- | |
//Borland C++Builder | |
//Copyright (c) 1987, 1998-2002 Borland International Inc. All Rights Reserved. | |
//---------------------------------------------------------------------------- | |
//--------------------------------------------------------------------------- | |
#include <vcl.h> | |
#pragma hdrstop | |
#include <stdlib.h> | |
//--------------------------------------------------------------------------- | |
#include <Forms.hpp> | |
#include <ExtCtrls.hpp> | |
#include <Controls.hpp> | |
#include <Classes.hpp> | |
#include <Menus.hpp> | |
#include <StdCtrls.hpp> | |
#include <Graphics.hpp> | |
//--------------------------------------------------------------------------- | |
struct THole | |
{ | |
int Time; | |
bool Dead; | |
}; | |
class TSwatForm : public TForm | |
{ | |
__published: | |
TImage *Image1; | |
TMainMenu *MainMenu1; | |
TMenuItem *Gamr1; | |
TMenuItem *New1; | |
TMenuItem *Options1; | |
TMenuItem *Stop1; | |
TMenuItem *Pause1; | |
TMenuItem *About1; | |
TTimer *Timer1; | |
TImage *GameOverImage; | |
TLabel *TimeLabel; | |
TLabel *MissLabel; | |
TLabel *HitsLabel; | |
TLabel *EscapedLabel; | |
TLabel *ScoreLabel; | |
void __fastcall FormCreate(TObject *Sender); | |
void __fastcall TimerTick(TObject *Sender); | |
void __fastcall DisplayAbout(TObject *Sender); | |
void __fastcall New1Click(TObject *Sender); | |
void __fastcall Stop1Click(TObject *Sender); | |
void __fastcall Pause1Click(TObject *Sender); | |
void __fastcall Options1Click(TObject *Sender); | |
void __fastcall WriteScore(void); | |
void __fastcall FormDestroy(TObject *Sender); | |
void __fastcall FormMouseDown(TObject *Sender, TMouseButton Button, | |
TShiftState Shift, int X, int Y); | |
void __fastcall FormMouseUp(TObject *Sender, TMouseButton Button, | |
TShiftState Shift, int X, int Y); | |
private: // private user declarations | |
int Score, LiveTime, Frequence, GameTime; | |
int Hits, Miss, Escaped; | |
bool IsGameOver, IsPause; | |
Graphics::TBitmap* Live; | |
Graphics::TBitmap* Dead; | |
THole HoleInfo[5]; | |
public: // public user declarations | |
virtual __fastcall TSwatForm(TComponent* Owner); | |
friend class TOptionsDlg; | |
}; | |
//--------------------------------------------------------------------------- | |
extern TSwatForm *SwatForm; | |
//--------------------------------------------------------------------------- | |
const int crMaletUp = 5; | |
const int crMaletDown = 6; | |
const int MissedPoints = -2; | |
const int HitPoints = 5; | |
const int MissedCritter = -1; | |
const int CritterSize = 72; | |
const int TimerId = 1; | |
#include "about.h" | |
#include "options.h" | |
//--------------------------------------------------------------------------- | |
#pragma resource "*.dfm" | |
#pragma resource "extrares.RES" | |
TSwatForm *SwatForm; | |
TPoint Holes[5] = {TPoint(10, 10),TPoint(200, 10),TPoint(100, 100), | |
TPoint(10, 200),TPoint(200, 200) | |
}; | |
//--------------------------------------------------------------------------- | |
__fastcall TSwatForm::TSwatForm(TComponent* Owner) | |
: TForm(Owner) | |
{ | |
} | |
//--------------------------------------------------------------------------- | |
void __fastcall TSwatForm::DisplayAbout(TObject *Sender) | |
{ | |
AboutBox->ShowModal(); | |
} | |
//--------------------------------------------------------------------- | |
void __fastcall TSwatForm::FormCreate(TObject *Sender) | |
{ | |
Screen->Cursors[crMaletUp] = LoadCursor(HInstance, "Malet"); | |
Screen->Cursors[crMaletDown] = LoadCursor(HInstance, "MaletDown"); | |
Screen->Cursor = TCursor(crMaletUp); | |
randomize(); | |
Live = new Graphics::TBitmap; | |
Live->LoadFromResourceName((int)HInstance, "Live"); | |
Dead = new Graphics::TBitmap; | |
Dead->LoadFromResourceName((int)HInstance, "Dead"); | |
IsGameOver = true; | |
IsPause = false; | |
LiveTime = 10; | |
Frequence = 20; | |
GameTime = 150; // fifteen seconds | |
Application->OnMinimize = Pause1Click; | |
Application->OnRestore = Pause1Click; | |
} | |
//--------------------------------------------------------------------- | |
void __fastcall TSwatForm::TimerTick(TObject *Sender) | |
{ | |
Timer1->Tag++; | |
int i = random(Frequence); | |
if (i < 5) | |
{ | |
if (HoleInfo[i].Time == 0) | |
{ | |
HoleInfo[i].Time = Timer1->Tag + LiveTime; | |
HoleInfo[i].Dead = false; | |
Canvas->Draw(Holes[i].x, Holes[i].y, Live); | |
} | |
} | |
for (i = 0; i < 5; i++) | |
{ | |
if (Timer1->Tag > HoleInfo[i].Time && HoleInfo[i].Time != 0) | |
{ | |
HoleInfo[i].Time = 0; | |
if (!HoleInfo[i].Dead) | |
{ | |
Score += MissedCritter; | |
Escaped++; | |
} | |
Canvas->FillRect(Rect(Holes[i].x, Holes[i].y, | |
Holes[i].x + Dead->Width, Holes[i].y + Dead->Height)); | |
} | |
} | |
WriteScore(); | |
if (Timer1->Tag >= GameTime) | |
Stop1Click(this); | |
} | |
//--------------------------------------------------------------------------- | |
void __fastcall TSwatForm::WriteScore(void) | |
{ | |
TimeLabel->Caption = IntToStr(GameTime - Timer1->Tag); | |
HitsLabel->Caption = IntToStr(Hits); | |
MissLabel->Caption = IntToStr(Miss); | |
EscapedLabel->Caption = IntToStr(Escaped); | |
ScoreLabel->Caption = IntToStr(Score); | |
} | |
void __fastcall TSwatForm::New1Click(TObject *Sender) | |
{ | |
Timer1->Enabled = true; | |
Timer1->Tag = 0; | |
Score = 0; | |
Hits = 0; | |
Miss = 0; | |
Escaped = 0; | |
if (IsPause) | |
{ | |
IsPause = false; | |
Pause1->Caption = "&Pause"; | |
} | |
GameOverImage->Visible = false; | |
IsGameOver = false; | |
memset(HoleInfo, 0, sizeof(HoleInfo)); | |
New1->Enabled = false; | |
Options1->Enabled = false; | |
Stop1->Enabled = true; | |
} | |
//--------------------------------------------------------------------- | |
void __fastcall TSwatForm::Stop1Click(TObject *Sender) | |
{ | |
Timer1->Enabled = false; | |
IsPause = false; | |
GameOverImage->Visible = true; | |
IsGameOver = true; | |
Timer1->Tag = GameTime; | |
New1->Enabled = true; | |
Options1->Enabled = true; | |
Stop1->Enabled = false; | |
for (int i = 0; i < 5; i++) | |
{ | |
if (HoleInfo[i].Time != 0) | |
{ | |
Canvas->FillRect(Rect(Holes[i].x, Holes[i].y, | |
Holes[i].x + Dead->Width, Holes[i].y + Dead->Height)); | |
} | |
} | |
} | |
//--------------------------------------------------------------------- | |
void __fastcall TSwatForm::Pause1Click(TObject *Sender) | |
{ | |
if (IsGameOver) | |
return; | |
if (IsPause) | |
{ | |
IsPause = false; | |
Pause1->Caption = "&Pause"; | |
Stop1->Enabled = true; | |
Timer1->Enabled = true; | |
} | |
else | |
{ | |
IsPause = true; | |
Pause1->Caption = "&Continue"; | |
Stop1->Enabled = false; | |
Timer1->Enabled = false; | |
} | |
} | |
//--------------------------------------------------------------------- | |
void __fastcall TSwatForm::Options1Click(TObject *Sender) | |
{ | |
OptionsDlg->ShowModal(); | |
} | |
//--------------------------------------------------------------------- | |
void __fastcall TSwatForm::FormDestroy(TObject *Sender) | |
{ | |
delete Live; | |
delete Dead; | |
} | |
//--------------------------------------------------------------------- | |
void __fastcall TSwatForm::FormMouseDown(TObject *Sender, TMouseButton Button, | |
TShiftState Shift, int X, int Y) | |
{ | |
Screen->Cursor = TCursor(crMaletDown); | |
if (IsGameOver || IsPause) | |
return; | |
bool hit = false; | |
for (int i = 0; i < 5; i++) | |
{ | |
if (!HoleInfo[i].Dead && HoleInfo[i].Time != 0) | |
{ | |
if (X > Holes[i].x && X < (Holes[i].x + Live->Width) && | |
Y > Holes[i].y && Y < (Holes[i].y + Live->Height)) | |
{ | |
Score += HitPoints; | |
HoleInfo[i].Dead = true; | |
HoleInfo[i].Time = Timer1->Tag + 2 * LiveTime; | |
Hits++; | |
hit = true; | |
Canvas->Draw(Holes[i].x, Holes[i].y, Dead); | |
} | |
} | |
} | |
if (!hit) | |
{ | |
Score += MissedPoints; | |
Miss++; | |
} | |
WriteScore(); | |
} | |
//--------------------------------------------------------------------------- | |
void __fastcall TSwatForm::FormMouseUp(TObject *Sender, TMouseButton Button, | |
TShiftState Shift, int X, int Y) | |
{ | |
Screen->Cursor = TCursor(crMaletUp); | |
} | |
//--------------------------------------------------------------------------- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment