mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2024-11-17 23:20:19 +01:00
306 lines
7.1 KiB
C++
306 lines
7.1 KiB
C++
#include "pch.h"
|
|
#include "high_score.h"
|
|
|
|
#include "fullscrn.h"
|
|
#include "memory.h"
|
|
#include "options.h"
|
|
#include "resource.h"
|
|
#include "winmain.h"
|
|
|
|
int high_score::dlg_enter_name;
|
|
int high_score::dlg_score;
|
|
int high_score::position;
|
|
LPCSTR high_score::default_name;
|
|
high_score_struct* high_score::dlg_hst;
|
|
|
|
winhelp_entry high_score::help[21]
|
|
{
|
|
winhelp_entry{0x70, 0x3E9},
|
|
winhelp_entry{0x191, 0x3EB},
|
|
winhelp_entry{0x1F5, 0x3EB},
|
|
winhelp_entry{0x259, 0x3EB},
|
|
winhelp_entry{0x192, 0x3EB},
|
|
winhelp_entry{0x193, 0x3EB},
|
|
winhelp_entry{0x194, 0x3EB},
|
|
winhelp_entry{0x195, 0x3EB},
|
|
winhelp_entry{0x1F6, 0x3EB},
|
|
winhelp_entry{0x1F7, 0x3EB},
|
|
winhelp_entry{0x1F8, 0x3EB},
|
|
winhelp_entry{0x1F9, 0x3EB},
|
|
winhelp_entry{0x2BD, 0x3EB},
|
|
winhelp_entry{0x2BE, 0x3EB},
|
|
winhelp_entry{0x2BF, 0x3EB},
|
|
winhelp_entry{0x2C0, 0x3EB},
|
|
winhelp_entry{0x2C1, 0x3EB},
|
|
winhelp_entry{0x2C2, 0x3EB},
|
|
winhelp_entry{0x2C3, 0x3EB},
|
|
winhelp_entry{0x2C4, 0x3EB},
|
|
winhelp_entry{0, 0},
|
|
};
|
|
|
|
int high_score::read(high_score_struct* table, int* ptrToSmth)
|
|
{
|
|
char Buffer[20];
|
|
|
|
int scoreSum = 0;
|
|
clear_table(table);
|
|
char* buf1 = memory::allocate(300u);
|
|
if (!buf1)
|
|
return 1;
|
|
char* buf2 = memory::allocate(300u);
|
|
int position = 0;
|
|
high_score_struct* tablePtr = table;
|
|
const CHAR* optPath = pinball::get_rc_string(166, 0);
|
|
do
|
|
{
|
|
_itoa_s(position, Buffer, 10);
|
|
lstrcatA(Buffer, ".Name");
|
|
options::get_string(optPath, Buffer, buf1, pinball::WindowName, 32);
|
|
buf1[32] = 0;
|
|
lstrcpyA(tablePtr->Name, buf1);
|
|
_itoa_s(position, Buffer, 10);
|
|
lstrcatA(Buffer, ".Score");
|
|
options::get_string(optPath, Buffer, buf1, pinball::WindowName, 300);
|
|
tablePtr->Score = atol(buf1);
|
|
for (int i = lstrlenA(tablePtr->Name); --i >= 0; scoreSum += tablePtr->Name[i])
|
|
{
|
|
}
|
|
scoreSum += tablePtr->Score;
|
|
++position;
|
|
++tablePtr;
|
|
}
|
|
while (position < 5);
|
|
scramble_number_string(scoreSum, buf1);
|
|
options::get_string(optPath, "Verification", buf2, pinball::WindowName, 300);
|
|
if (lstrcmpA(buf1, buf2))
|
|
clear_table(table);
|
|
memory::free(buf1);
|
|
memory::free(buf2);
|
|
return 0;
|
|
}
|
|
|
|
int high_score::write(high_score_struct* table, int* ptrToSmth)
|
|
{
|
|
char Buffer[20];
|
|
|
|
high_score_struct* tablePtr = table;
|
|
int scoreSum = 0;
|
|
CHAR* buf = memory::allocate(300u);
|
|
if (!buf)
|
|
return 1;
|
|
int position = 0;
|
|
const CHAR* optPath = pinball::get_rc_string(166, 0);
|
|
do
|
|
{
|
|
_itoa_s(position, Buffer, 10);
|
|
lstrcatA(Buffer, ".Name");
|
|
options::set_string(optPath, Buffer, tablePtr->Name);
|
|
_itoa_s(position, Buffer, 10);
|
|
lstrcatA(Buffer, ".Score");
|
|
_ltoa_s(tablePtr->Score, buf, 300, 10);
|
|
options::set_string(optPath, Buffer, buf);
|
|
for (int i = lstrlenA(tablePtr->Name); --i >= 0; scoreSum += tablePtr->Name[i])
|
|
{
|
|
}
|
|
scoreSum += tablePtr->Score;
|
|
++position;
|
|
++tablePtr;
|
|
}
|
|
while (position < 5);
|
|
scramble_number_string(scoreSum, buf);
|
|
options::set_string(optPath, "Verification", buf);
|
|
memory::free(buf);
|
|
return 0;
|
|
}
|
|
|
|
void high_score::clear_table(high_score_struct* table)
|
|
{
|
|
for (int index = 5; index; --index)
|
|
{
|
|
table->Score = -999;
|
|
table->Name[0] = 0;
|
|
++table;
|
|
}
|
|
}
|
|
|
|
int high_score::get_score_position(high_score_struct* table, int score)
|
|
{
|
|
if (score <= 0)
|
|
return -1;
|
|
|
|
for (int position = 0; position < 5; position++)
|
|
{
|
|
if (table[position].Score < score)
|
|
return position;
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
int high_score::place_new_score_into(high_score_struct* table, int score, LPSTR scoreStr, int position)
|
|
{
|
|
if (position >= 0)
|
|
{
|
|
if (position <= 4)
|
|
{
|
|
high_score_struct* tablePtr = table + 4;
|
|
int index = 5 - position;
|
|
do
|
|
{
|
|
--index;
|
|
memcpy(tablePtr, &tablePtr[-1], sizeof(high_score_struct));
|
|
--tablePtr;
|
|
}
|
|
while (index);
|
|
}
|
|
high_score_struct* posTable = &table[position];
|
|
posTable->Score = score;
|
|
if (lstrlenA(scoreStr) >= 31)
|
|
scoreStr[31] = 0;
|
|
lstrcpyA(posTable->Name, scoreStr);
|
|
posTable->Name[31] = 0;
|
|
}
|
|
return position;
|
|
}
|
|
|
|
void high_score::scramble_number_string(int Value, char* Buffer)
|
|
{
|
|
_ltoa_s(Value, Buffer, 300, 10);
|
|
}
|
|
|
|
void high_score::show_high_score_dialog(high_score_struct* table)
|
|
{
|
|
dlg_enter_name = 0;
|
|
dlg_score = 0;
|
|
dlg_hst = table;
|
|
DialogBoxParamA(winmain::hinst, "dlg_highscores", winmain::hwnd_frame, HighScore, 0);
|
|
}
|
|
|
|
void high_score::show_and_set_high_score_dialog(high_score_struct* table, int score, int pos, LPCSTR defaultName)
|
|
{
|
|
position = pos;
|
|
dlg_score = score;
|
|
dlg_hst = table;
|
|
dlg_enter_name = 1;
|
|
default_name = defaultName;
|
|
while (DialogBoxParamA(winmain::hinst, "dlg_highscores", winmain::hwnd_frame, HighScore, 0))
|
|
{
|
|
}
|
|
}
|
|
|
|
INT_PTR __stdcall high_score::HighScore(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
|
|
{
|
|
HWND parent;
|
|
int nIDDlgItem;
|
|
CHAR String1[256];
|
|
CHAR name[32];
|
|
|
|
switch (msg)
|
|
{
|
|
case WM_CLOSE:
|
|
SendMessageA(hWnd, WM_COMMAND, WM_DESTROY, 0);
|
|
break;
|
|
case WM_HELP:
|
|
WinHelpA(static_cast<HWND>(reinterpret_cast<HELPINFO*>(lParam)->hItemHandle), "pinball.hlp", HELP_WM_HELP,
|
|
(ULONG_PTR)help);
|
|
break;
|
|
case WM_CONTEXTMENU:
|
|
WinHelpA((HWND)wParam, "pinball.hlp", HELP_CONTEXTMENU, (ULONG_PTR)help);
|
|
break;
|
|
case WM_INITDIALOG:
|
|
show_high_scores(hWnd, dlg_hst);
|
|
for (nIDDlgItem = DLG_HIGHSCORES_EditName1; nIDDlgItem < 611; ++nIDDlgItem)
|
|
{
|
|
ShowWindow(GetDlgItem(hWnd, nIDDlgItem), 0);
|
|
}
|
|
if (dlg_enter_name == 1)
|
|
{
|
|
if (position == -1)
|
|
{
|
|
dlg_enter_name = 0;
|
|
return 1;
|
|
}
|
|
HWND nameTextBox = GetDlgItem(hWnd, position + DLG_HIGHSCORES_EditName1);
|
|
ShowWindow(nameTextBox, 5);
|
|
EnableWindow(nameTextBox, 1);
|
|
SetFocus(nameTextBox);
|
|
if (default_name)
|
|
{
|
|
SetWindowTextA(nameTextBox, default_name);
|
|
SendMessageA(nameTextBox, EM_SETSEL, 0, -1);
|
|
}
|
|
SendMessageA(nameTextBox, EM_SETLIMITTEXT, 31u, 0);
|
|
}
|
|
else
|
|
{
|
|
SetFocus(hWnd);
|
|
}
|
|
parent = GetParent(hWnd);
|
|
if (parent)
|
|
fullscrn::center_in(parent, hWnd);
|
|
return 0;
|
|
case WM_COMMAND:
|
|
switch (wParam)
|
|
{
|
|
case DLG_HIGHSCORES_Ok:
|
|
if (dlg_enter_name != 1)
|
|
{
|
|
break;
|
|
}
|
|
GetDlgItemTextA(hWnd, position + DLG_HIGHSCORES_EditName1, name, 32);
|
|
name[31] = 0;
|
|
place_new_score_into(dlg_hst, dlg_score, name, position);
|
|
break;
|
|
case DLG_HIGHSCORES_Cancel:
|
|
break;
|
|
case DLG_HIGHSCORES_Clear:
|
|
lstrcpyA(String1, pinball::get_rc_string(41, 0));
|
|
if (MessageBoxA(hWnd, pinball::get_rc_string(40, 0), String1, MB_DEFBUTTON2 | MB_OKCANCEL) == 1)
|
|
{
|
|
clear_table(dlg_hst);
|
|
if (dlg_enter_name)
|
|
EndDialog(hWnd, 1);
|
|
else
|
|
EndDialog(hWnd, 0);
|
|
}
|
|
return 0;
|
|
default:
|
|
return 0;
|
|
}
|
|
|
|
dlg_enter_name = 0;
|
|
EndDialog(hWnd, 0);
|
|
return 1;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
|
|
void high_score::show_high_scores(HWND hDlg, high_score_struct* table)
|
|
{
|
|
high_score_struct* tablePtr = table;
|
|
int nextPosition = 0;
|
|
for (int i = 0; i < 5; ++i)
|
|
{
|
|
if (dlg_enter_name == 1 && position == i)
|
|
{
|
|
hsdlg_show_score(hDlg, " ", dlg_score, i);
|
|
nextPosition = 1;
|
|
}
|
|
hsdlg_show_score(hDlg, tablePtr->Name, tablePtr->Score, i + nextPosition);
|
|
++tablePtr;
|
|
}
|
|
}
|
|
|
|
void high_score::hsdlg_show_score(HWND hDlg, LPCSTR name, int score, int position)
|
|
{
|
|
CHAR scoreStr[36];
|
|
if (position < 5)
|
|
{
|
|
score::string_format(score, scoreStr);
|
|
if (scoreStr[0])
|
|
{
|
|
SetWindowTextA(GetDlgItem(hDlg, position + DLG_HIGHSCORES_StaticName1), name);
|
|
SetWindowTextA(GetDlgItem(hDlg, position + DLG_HIGHSCORES_Score1), scoreStr);
|
|
}
|
|
}
|
|
}
|