CNC_TS_and_RA2_Mission_Editor/MissionEditor/Building.cpp
Zero Fanker 93e956e7ac
Enhance:ini registry sequence (#121)
* '+=' supported .
* introduced registry list value deduplication .
* TechnoType listing now parse data both from ini and map .
* added UT case .
2024-12-01 14:09:30 -05:00

246 lines
6.7 KiB
C++

/*
FinalSun/FinalAlert 2 Mission Editor
Copyright (C) 1999-2024 Electronic Arts, Inc.
Authored by Matthias Wagner
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
// Building.cpp: Implementierungsdatei
//
#include "stdafx.h"
#include "FinalSun.h"
#include "Building.h"
#include "mapdata.h"
#include "variables.h"
#include "inlines.h"
#include "IniMega.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// Dialogfeld CBuilding
CBuilding::CBuilding(CWnd* pParent /*=NULL*/)
: CDialog(CBuilding::IDD, pParent)
{
//{{AFX_DATA_INIT(CBuilding)
m_direction = _T("");
m_house = _T("");
m_flag1 = _T("");
m_flag2 = _T("");
m_energy = _T("");
m_upgradecount = _T("");
m_spotlight = _T("");
m_upgrade1 = _T("");
m_upgrade2 = _T("");
m_upgrade3 = _T("");
m_flag3 = _T("");
m_flag4 = _T("");
m_tag = _T("");
//}}AFX_DATA_INIT
Init();
}
void CBuilding::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CBuilding)
DDX_Control(pDX, IDC_STRENGTH, m_strength_ctrl);
DDX_CBString(pDX, IDC_DIRECTION, m_direction);
DDX_CBString(pDX, IDC_HOUSE, m_house);
DDX_Text(pDX, IDC_P1, m_flag1);
DDX_Text(pDX, IDC_P2, m_flag2);
DDX_Text(pDX, IDC_P3, m_energy);
DDX_Text(pDX, IDC_P4, m_upgradecount);
DDX_Text(pDX, IDC_P5, m_spotlight);
DDX_CBString(pDX, IDC_P6, m_upgrade1);
DDX_CBString(pDX, IDC_P7, m_upgrade2);
DDX_CBString(pDX, IDC_P8, m_upgrade3);
DDX_Text(pDX, IDC_P9, m_flag3);
DDX_Text(pDX, IDC_P10, m_flag4);
DDX_CBString(pDX, IDC_TAG, m_tag);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CBuilding, CDialog)
//{{AFX_MSG_MAP(CBuilding)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// Behandlungsroutinen für Nachrichten CBuilding
CString GetName(CString id)
{
return rules.GetString(id, "Name");
}
void CBuilding::OnOK()
{
CDialog::OnOK();
m_strength = GetText(&m_strength_ctrl);
UpdateData();
char d[50];
TruncSpace(m_spotlight);
itoa(atoi(m_spotlight), d, 10);
m_spotlight = d;
m_house = TranslateHouse(m_house);
TruncSpace(m_upgrade1);
TruncSpace(m_upgrade2);
TruncSpace(m_upgrade3);
TruncSpace(m_tag);
TruncSpace(m_flag1);
TruncSpace(m_flag2);
TruncSpace(m_flag3);
TruncSpace(m_flag4);
//
}
BOOL CBuilding::OnInitDialog()
{
CDialog::OnInitDialog();
CIniFile& ini = Map->GetIniFile();
int i;
CComboBox* chouse, * ctag;
chouse = (CComboBox*)GetDlgItem(IDC_HOUSE);
ctag = (CComboBox*)GetDlgItem(IDC_TAG);
ListHouses(*chouse, FALSE);
ListTags(*ctag, TRUE);
m_strength_ctrl.SetRange(0, 256);
m_strength_ctrl.SetPos(atoi(m_strength));
UpdateData(FALSE);
int upgradecount = 0;
if (strcmp(m_type, "GACTWR") == NULL) {
upgradecount = 1;
}
upgradecount = rules.GetInteger(m_type, "Upgrades");
upgradecount = ini.GetInteger(m_type, "Upgrades", upgradecount);
GetDlgItem(IDC_P5)->SendMessage(CB_SETCURSEL, atoi(m_spotlight), 0);
if (upgradecount > 0) {
auto updatePowerupItems = [=](const CIniFile& ini) {
auto const& rules = IniMegaFile::GetRules();
for (auto const& [seq, unitname] : rules.GetSection("BuildingTypes")) {
auto const& targetBldID = ini.GetString(unitname, "PowersUpBuilding");
if (targetBldID == m_type) {
auto const desc = unitname + " (" + GetName(unitname) + ")";
((CComboBox*)GetDlgItem(IDC_P6))->AddString(desc);
((CComboBox*)GetDlgItem(IDC_P7))->AddString(desc);
((CComboBox*)GetDlgItem(IDC_P8))->AddString(desc);
}
}
};
updatePowerupItems(rules);
updatePowerupItems(ini);
}
GetDlgItem(IDC_P8)->EnableWindow(TRUE);
GetDlgItem(IDC_P7)->EnableWindow(TRUE);
GetDlgItem(IDC_P6)->EnableWindow(TRUE);
GetDlgItem(IDC_P4)->EnableWindow(TRUE);
if (upgradecount < 3)
GetDlgItem(IDC_P8)->EnableWindow(FALSE);
if (upgradecount < 2)
GetDlgItem(IDC_P7)->EnableWindow(FALSE);
if (upgradecount < 1) {
GetDlgItem(IDC_P6)->EnableWindow(FALSE);
GetDlgItem(IDC_P4)->EnableWindow(FALSE);
}
UpdateStrings();
return TRUE;
}
void CBuilding::Init(CString house, CString strength, CString direction, CString tag, CString flag1, CString flag2, CString energy, CString upgradecount, CString spotlight, CString upgrade1, CString upgrade2, CString upgrade3, CString flag3, CString flag4)
{
CIniFile& ini = Map->GetIniFile();
if (house == "") {
house = TranslateHouse(Map->GetHouseID(0), TRUE);
} else
m_house = TranslateHouse(house, TRUE);
m_house = TranslateHouse(house, TRUE);
m_flag1 = flag1;
m_flag2 = flag2;
m_flag3 = flag3;
m_flag4 = flag4;
m_spotlight = spotlight;
m_energy = energy;
m_upgrade1 = upgrade1;
m_upgrade2 = upgrade2;
m_upgrade3 = upgrade3;
m_upgradecount = upgradecount;
m_strength = strength;
m_tag = tag;
m_direction = direction;
}
void CBuilding::UpdateStrings()
{
SetWindowText(GetLanguageStringACP("StructCap"));
GetDlgItem(IDC_LHOUSE)->SetWindowText(GetLanguageStringACP("StructHouse"));
GetDlgItem(IDC_LDESC)->SetWindowText(GetLanguageStringACP("StructDesc"));
GetDlgItem(IDC_LSTRENGTH)->SetWindowText(GetLanguageStringACP("StructStrength"));
GetDlgItem(IDC_LDIRECTION)->SetWindowText(GetLanguageStringACP("StructDirection"));
GetDlgItem(IDC_LTAG)->SetWindowText(GetLanguageStringACP("StructTag"));
GetDlgItem(IDC_LAIREPAIRS)->SetWindowText(GetLanguageStringACP("StructAIRepairs"));
GetDlgItem(IDC_LENERGY)->SetWindowText(GetLanguageStringACP("StructEnergy"));
GetDlgItem(IDC_LUPGRADECOUNT)->SetWindowText(GetLanguageStringACP("StructUpgradeCount"));
GetDlgItem(IDC_LSPOTLIGHT)->SetWindowText(GetLanguageStringACP("StructSpotlight"));
GetDlgItem(IDC_LUPGRADE1)->SetWindowText(GetLanguageStringACP("StructUpgrade1"));
GetDlgItem(IDC_LUPGRADE2)->SetWindowText(GetLanguageStringACP("StructUpgrade2"));
GetDlgItem(IDC_LUPGRADE3)->SetWindowText(GetLanguageStringACP("StructUpgrade3"));
GetDlgItem(IDC_LP1)->SetWindowText(GetLanguageStringACP("StructP1"));
GetDlgItem(IDC_LP2)->SetWindowText(GetLanguageStringACP("StructP2"));
GetDlgItem(IDC_LP3)->SetWindowText(GetLanguageStringACP("StructP3"));
SetDlgItemText(IDOK, GetLanguageStringACP("OK"));
SetDlgItemText(IDCANCEL, GetLanguageStringACP("Cancel"));
}