mirror of
https://gitflic.ru/project/w0lf/bulls-and-cows-cpp.git
synced 2026-03-29 00:12:46 +03:00
Compare commits
14 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 036a8e4645 | |||
| 5482fe1814 | |||
| f7572874b0 | |||
| 33d1f783ac | |||
| 872e390ce9 | |||
| 5a4fa61ed2 | |||
| 8197a64803 | |||
| e75d82e896 | |||
| 7669dff7a6 | |||
| 7edca0b5e6 | |||
| 340924213a | |||
| 3833461e90 | |||
| 3e22bb1dc1 | |||
| 324510173a |
@@ -1,18 +1,19 @@
|
|||||||
// CGame.cpp
|
// Bulls and Cows the game
|
||||||
|
// CGame.cpp
|
||||||
//
|
//
|
||||||
|
#include "defines.h"
|
||||||
#include "CGame.h"
|
#include "CGame.h"
|
||||||
#include <string>
|
#include "CUserInput.h"
|
||||||
#include <random>
|
#include "CPrint.h"
|
||||||
#include <cwctype>
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
#include <random>
|
||||||
|
|
||||||
void CGame::Init(int digits)
|
void CGame::Init()
|
||||||
{
|
{
|
||||||
m_ucDigits = digits;
|
|
||||||
m_fGameIsEnd = false;
|
|
||||||
m_ucBulls = 0;
|
m_ucBulls = 0;
|
||||||
m_ucCows = 0;
|
m_ucCows = 0;
|
||||||
m_uStepCounter = 0;
|
m_uStepCounter = 0;
|
||||||
|
m_fGameIsEnd = false;
|
||||||
m_sLastError = L"";
|
m_sLastError = L"";
|
||||||
|
|
||||||
std::random_device r;
|
std::random_device r;
|
||||||
@@ -20,6 +21,7 @@ void CGame::Init(int digits)
|
|||||||
std::uniform_int_distribution<int> d(0, 9);
|
std::uniform_int_distribution<int> d(0, 9);
|
||||||
|
|
||||||
m_uGuessedNumber = new int[m_ucDigits] { 0 };
|
m_uGuessedNumber = new int[m_ucDigits] { 0 };
|
||||||
|
|
||||||
int n = 0;
|
int n = 0;
|
||||||
|
|
||||||
for (int i = 0; i < m_ucDigits; ++i)
|
for (int i = 0; i < m_ucDigits; ++i)
|
||||||
@@ -39,133 +41,89 @@ void CGame::Init(int digits)
|
|||||||
void CGame::Start()
|
void CGame::Start()
|
||||||
{
|
{
|
||||||
CStep step;
|
CStep step;
|
||||||
|
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
|
|
||||||
while (!m_fGameIsEnd)
|
while (!m_fGameIsEnd)
|
||||||
{
|
{
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
PrintGameHeader();
|
CPrint::GameHeader();
|
||||||
ShowGuessedNumber(false);
|
CPrint::GuessedNumber(this, IS_SHOW);
|
||||||
PrintSteps();
|
CPrint::Steps(this);
|
||||||
ret = GetNumber(step);
|
} while (!GetNumber(step));
|
||||||
switch (ret)
|
|
||||||
{
|
|
||||||
case -1:
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case -2:
|
|
||||||
{
|
|
||||||
m_sLastError = L"Вы должны ввести " + std::to_wstring(m_ucDigits) + L"-значное число!";
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case -3:
|
|
||||||
{
|
|
||||||
m_sLastError = L"Вы должны ввести число!";
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case -4:
|
|
||||||
{
|
|
||||||
m_sLastError = L"Цифры в числе не должны повторяться!";
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
default:
|
|
||||||
{
|
|
||||||
m_sLastError = L"";
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} while (ret < 0);
|
|
||||||
m_uStepCounter++;
|
m_uStepCounter++;
|
||||||
}
|
}
|
||||||
|
|
||||||
PrintGameHeader();
|
CPrint::GameHeader();
|
||||||
ShowGuessedNumber(true);
|
CPrint::GuessedNumber(this, true);
|
||||||
PrintSteps();
|
CPrint::Steps(this);
|
||||||
PrintGameFooter();
|
CPrint::GameFooter(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
void CGame::ShowGuessedNumber(bool show)
|
bool CGame::GetNumber(CStep step)
|
||||||
{
|
{
|
||||||
std::wcout << '\t';
|
|
||||||
for (int i = 0; i < m_ucDigits; ++i)
|
|
||||||
{
|
|
||||||
show ? std::wcout << m_uGuessedNumber[i] : std::wcout << '#';
|
|
||||||
}
|
|
||||||
std::wcout << '\n' << '\t';
|
|
||||||
|
|
||||||
for (int i = 0; i < m_ucDigits; ++i)
|
|
||||||
{
|
|
||||||
std::wcout << '-';
|
|
||||||
}
|
|
||||||
std::wcout << std::endl;
|
|
||||||
}
|
|
||||||
|
|
||||||
void CGame::PrintGameHeader()
|
|
||||||
{
|
|
||||||
std::system("cls");
|
|
||||||
std::wcout << L"Быки и Коровы. Версия " << VERSION << std::endl;
|
|
||||||
std::wcout << L"Copyright (c) 2023 by W0LF aka 'dreamforce'" << std::endl;
|
|
||||||
std::wcout << std::endl;
|
|
||||||
}
|
|
||||||
|
|
||||||
void CGame::PrintGameFooter()
|
|
||||||
{
|
|
||||||
std::wcout << L"\n\n\t" << L"!!! П О Б Е Д А !!!" << std::endl;
|
|
||||||
std::wcout << L"\tКоличество ходов: " << m_uStepCounter << L"\n\n" << std::endl;
|
|
||||||
}
|
|
||||||
|
|
||||||
void CGame::PrintSteps()
|
|
||||||
{
|
|
||||||
if (m_Steps.size() < 1) return;
|
|
||||||
|
|
||||||
for (CStep& s : m_Steps)
|
|
||||||
{
|
|
||||||
std::wstring stepNumber = L"\0";
|
|
||||||
for (int& d : s.GetStepNumber())
|
|
||||||
{
|
|
||||||
stepNumber += std::to_wstring(d);
|
|
||||||
}
|
|
||||||
std::wcout << '\t' << stepNumber << '\t' << s.GetStepAnimals().first << L" Б., " << s.GetStepAnimals().second << L" К." << std::endl;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
int CGame::GetNumber(CStep step)
|
|
||||||
{
|
|
||||||
std::vector<int> digits;
|
|
||||||
std::wstring sNumber;
|
|
||||||
wchar_t c;
|
|
||||||
|
|
||||||
std::wcout << L"\t\t\t\t\t" << m_sLastError << L"\r";
|
std::wcout << L"\t\t\t\t\t" << m_sLastError << L"\r";
|
||||||
std::wcout << L"=>\t";
|
std::wcout << "=>\t";
|
||||||
std::wcin >> sNumber;
|
|
||||||
if (sNumber == L"Q" || sNumber == L"q") return -1;
|
|
||||||
if (sNumber.length() != m_ucDigits) return -2;
|
|
||||||
|
|
||||||
for (int i = 0; i < sNumber.length(); i++)
|
CUserInput userInput(m_ucDigits);
|
||||||
|
|
||||||
|
if (userInput.Get())
|
||||||
{
|
{
|
||||||
c = sNumber[i];
|
for (unsigned i = 0; i < userInput.m_vUserInput.size(); i++)
|
||||||
int r = std::iswdigit(c);
|
|
||||||
if (!(bool)r)
|
|
||||||
{
|
{
|
||||||
return -3;
|
if (IsEqual(userInput.m_vUserInput, userInput.m_vUserInput.at(i), i))
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
if (IsEqual(sNumber, c, i))
|
|
||||||
{
|
{
|
||||||
return -4;
|
m_sLastError = strERROR_1;
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
digits.push_back(((int)c) - 48); // Convert from char 'n' to number n
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
m_sLastError = strERROR_2_1 + std::to_wstring(m_ucDigits) + strERROR_2_2;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
step.StoreStepNumber(digits);
|
step.StoreStepNumber(userInput.m_vUserInput);
|
||||||
step.CheckForAnimals(m_uGuessedNumber, m_ucDigits);
|
step.CheckForAnimals(m_uGuessedNumber, m_ucDigits);
|
||||||
m_Steps.push_back(step);
|
m_Steps.push_back(step);
|
||||||
if (step.GetStepAnimals().first == 4) m_fGameIsEnd = true;
|
|
||||||
|
|
||||||
return 0;
|
if (step.GetStepAnimals().first == m_ucDigits) m_fGameIsEnd = true;
|
||||||
|
|
||||||
|
m_sLastError = L"";
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
CGame::CGame()
|
||||||
|
{
|
||||||
|
CUserInput userInput(1);
|
||||||
|
|
||||||
|
bool ok = false;
|
||||||
|
|
||||||
|
do
|
||||||
|
{
|
||||||
|
CPrint::GameHeader();
|
||||||
|
CPrint::GameInitialQuery();
|
||||||
|
std::wcout << "=> ";
|
||||||
|
|
||||||
|
if (userInput.Get())
|
||||||
|
{
|
||||||
|
if ((userInput.m_vUserInput.at(0) >= 3) && (userInput.m_vUserInput.at(0) <= 5))
|
||||||
|
{
|
||||||
|
m_ucDigits = userInput.m_vUserInput.at(0);
|
||||||
|
ok = true;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
userInput.m_vUserInput.clear();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} while (!ok);
|
||||||
|
}
|
||||||
|
|
||||||
|
CGame::~CGame()
|
||||||
|
{
|
||||||
|
delete[] m_uGuessedNumber;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,53 +1,43 @@
|
|||||||
|
// Bulls and Cows the game
|
||||||
// CGame.h
|
// CGame.h
|
||||||
//
|
//
|
||||||
#pragma once
|
#pragma once
|
||||||
#include "CStep.h"
|
#include "CStep.h"
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
#define VERSION 0.2
|
|
||||||
|
|
||||||
class CGame
|
class CGame
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
int m_ucDigits;
|
|
||||||
int m_ucBulls;
|
int m_ucBulls;
|
||||||
int m_ucCows;
|
int m_ucCows;
|
||||||
bool m_fGameIsEnd;
|
bool m_fGameIsEnd;
|
||||||
int m_uStepCounter;
|
|
||||||
int* m_uGuessedNumber;
|
|
||||||
std::wstring m_sLastError;
|
std::wstring m_sLastError;
|
||||||
std::vector<CStep> m_Steps;
|
|
||||||
|
bool GetNumber(CStep);
|
||||||
|
|
||||||
template<typename T, typename N>
|
template<typename T, typename N>
|
||||||
bool IsEqual(const T, const N, int);
|
bool IsEqual(const T, const N, int);
|
||||||
|
|
||||||
int GetNumber(CStep);
|
|
||||||
|
|
||||||
void ShowGuessedNumber(bool);
|
|
||||||
|
|
||||||
void PrintGameHeader();
|
|
||||||
|
|
||||||
void PrintGameFooter();
|
|
||||||
|
|
||||||
void PrintSteps();
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
int m_ucDigits; // Number of digits into the guessed number
|
||||||
|
int m_uStepCounter;
|
||||||
|
int* m_uGuessedNumber;
|
||||||
|
std::vector<CStep> m_Steps;
|
||||||
|
|
||||||
void Init(int);
|
void Init();
|
||||||
|
|
||||||
void Start();
|
void Start();
|
||||||
|
CGame();
|
||||||
|
~CGame();
|
||||||
};
|
};
|
||||||
|
|
||||||
template<typename T, typename N>
|
template<typename T, typename N>
|
||||||
bool CGame::IsEqual(const T number, const N digit, int i)
|
bool CGame::IsEqual(const T number, const N digit, int i)
|
||||||
{
|
{
|
||||||
i--;
|
|
||||||
bool result = false;
|
bool result = false;
|
||||||
|
|
||||||
while (i >= 0)
|
while ((--i) >= 0)
|
||||||
{
|
{
|
||||||
if (digit == number[i]) result = true;
|
if (digit == number[i]) result = true;
|
||||||
i--;
|
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|||||||
54
bulls-and-cows-cpp/CPrint.cpp
Normal file
54
bulls-and-cows-cpp/CPrint.cpp
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
// Bulls and Cows the game
|
||||||
|
// CPrint.cpp
|
||||||
|
//
|
||||||
|
#include "CPrint.h"
|
||||||
|
#include "defines.h"
|
||||||
|
#include <iostream>
|
||||||
|
|
||||||
|
void CPrint::GameInitialQuery()
|
||||||
|
{
|
||||||
|
std::wcout << strINITIAL_QUERY_1;
|
||||||
|
std::wcout << strINITIAL_QUERY_2 << std::endl;
|
||||||
|
}
|
||||||
|
|
||||||
|
void CPrint::GameHeader()
|
||||||
|
{
|
||||||
|
std::system("cls");
|
||||||
|
std::wcout << strGAME_NAME << ' ' << strGAME_VERSION << ' ' << VERSION << std::endl;
|
||||||
|
std::wcout << strGAME_COPYRIGHT << "\n\n" << std::endl;
|
||||||
|
}
|
||||||
|
|
||||||
|
void CPrint::GameFooter(CGame* const game)
|
||||||
|
{
|
||||||
|
std::wcout << "\n\n\t" << strVICTORY << std::endl;
|
||||||
|
std::wcout << strNUM_STEPS << game->m_uStepCounter << "\n\n" << std::endl;
|
||||||
|
}
|
||||||
|
|
||||||
|
void CPrint::Steps(CGame* const game)
|
||||||
|
{
|
||||||
|
if (game->m_Steps.size() < 1) return;
|
||||||
|
|
||||||
|
for (CStep& s : game->m_Steps)
|
||||||
|
{
|
||||||
|
std::wcout << '\t';
|
||||||
|
for (int& d : s.GetStepNumber()) std::wcout << d;
|
||||||
|
std::wcout << '\t' << s.GetStepAnimals().first << strBULLS << s.GetStepAnimals().second << strCOWS;
|
||||||
|
std::wcout << std::endl;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void CPrint::GuessedNumber(CGame* const game, const bool show)
|
||||||
|
{
|
||||||
|
std::wcout << '\t';
|
||||||
|
for (int i = 0; i < game->m_ucDigits; ++i)
|
||||||
|
{
|
||||||
|
show ? std::wcout << game->m_uGuessedNumber[i] : std::wcout << '#';
|
||||||
|
}
|
||||||
|
std::wcout << '\n' << '\t';
|
||||||
|
|
||||||
|
for (int i = 0; i < game->m_ucDigits; ++i)
|
||||||
|
{
|
||||||
|
std::wcout << '-';
|
||||||
|
}
|
||||||
|
std::wcout << std::endl;
|
||||||
|
}
|
||||||
15
bulls-and-cows-cpp/CPrint.h
Normal file
15
bulls-and-cows-cpp/CPrint.h
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
// Bulls and Cows the game
|
||||||
|
// CPrint.h
|
||||||
|
//
|
||||||
|
#pragma once
|
||||||
|
#include "CGame.h"
|
||||||
|
|
||||||
|
class CPrint
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
static void GameInitialQuery();
|
||||||
|
static void GameHeader();
|
||||||
|
static void GameFooter(CGame* const);
|
||||||
|
static void Steps(CGame* const);
|
||||||
|
static void GuessedNumber(CGame* const, const bool);
|
||||||
|
};
|
||||||
@@ -1,3 +1,4 @@
|
|||||||
|
// Bulls and Cows the game
|
||||||
// CStep.cpp
|
// CStep.cpp
|
||||||
//
|
//
|
||||||
#include "CStep.h"
|
#include "CStep.h"
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
// Bulls and Cows the game
|
||||||
// CStep.h
|
// CStep.h
|
||||||
//
|
//
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|||||||
39
bulls-and-cows-cpp/CUserInput.cpp
Normal file
39
bulls-and-cows-cpp/CUserInput.cpp
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
// Bulls and Cows the game
|
||||||
|
// CUserInput.cpp
|
||||||
|
//
|
||||||
|
#include "CUserInput.h"
|
||||||
|
#include <iostream>
|
||||||
|
#include <string>
|
||||||
|
#include <cwctype>
|
||||||
|
|
||||||
|
CUserInput::CUserInput(int nNumOfDigits)
|
||||||
|
{
|
||||||
|
m_nNumOfExpectedDigits = nNumOfDigits;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool CUserInput::Get()
|
||||||
|
{
|
||||||
|
std::wstring sDigits;
|
||||||
|
wchar_t cDigit;
|
||||||
|
int nDigit;
|
||||||
|
|
||||||
|
std::getline(std::wcin, sDigits);
|
||||||
|
|
||||||
|
if (sDigits.length() != m_nNumOfExpectedDigits)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (unsigned i = 0; i < m_nNumOfExpectedDigits; i++)
|
||||||
|
{
|
||||||
|
cDigit = sDigits.at(i);
|
||||||
|
if (!(bool)std::iswdigit(cDigit))
|
||||||
|
{
|
||||||
|
m_vUserInput.clear();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
nDigit = ((int)cDigit) - 48;
|
||||||
|
m_vUserInput.push_back(nDigit);
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
15
bulls-and-cows-cpp/CUserInput.h
Normal file
15
bulls-and-cows-cpp/CUserInput.h
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
// Bulls and Cows the game
|
||||||
|
// CUserInput.h
|
||||||
|
//
|
||||||
|
#pragma once
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
|
class CUserInput
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
int m_nNumOfExpectedDigits;
|
||||||
|
std::vector<int> m_vUserInput;
|
||||||
|
|
||||||
|
CUserInput(int nNumOfExpectedDigits);
|
||||||
|
bool Get();
|
||||||
|
};
|
||||||
@@ -77,10 +77,12 @@
|
|||||||
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<ConformanceMode>true</ConformanceMode>
|
<ConformanceMode>true</ConformanceMode>
|
||||||
<LanguageStandard>stdcpp17</LanguageStandard>
|
<LanguageStandard>stdcpp17</LanguageStandard>
|
||||||
|
<DisableSpecificWarnings>4018;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<Link>
|
<Link>
|
||||||
<SubSystem>Console</SubSystem>
|
<SubSystem>Console</SubSystem>
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
<RandomizedBaseAddress>false</RandomizedBaseAddress>
|
||||||
</Link>
|
</Link>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
@@ -132,12 +134,17 @@
|
|||||||
<ClCompile Include="..\..\..\MyFunctions\SetUserLocale.cpp" />
|
<ClCompile Include="..\..\..\MyFunctions\SetUserLocale.cpp" />
|
||||||
<ClCompile Include="bulls-and-cows.cpp" />
|
<ClCompile Include="bulls-and-cows.cpp" />
|
||||||
<ClCompile Include="CGame.cpp" />
|
<ClCompile Include="CGame.cpp" />
|
||||||
|
<ClCompile Include="CPrint.cpp" />
|
||||||
<ClCompile Include="CStep.cpp" />
|
<ClCompile Include="CStep.cpp" />
|
||||||
|
<ClCompile Include="CUserInput.cpp" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClInclude Include="..\..\..\MyFunctions\SetUserLocale.h" />
|
<ClInclude Include="..\..\..\MyFunctions\SetUserLocale.h" />
|
||||||
<ClInclude Include="CGame.h" />
|
<ClInclude Include="CGame.h" />
|
||||||
|
<ClInclude Include="CPrint.h" />
|
||||||
<ClInclude Include="CStep.h" />
|
<ClInclude Include="CStep.h" />
|
||||||
|
<ClInclude Include="CUserInput.h" />
|
||||||
|
<ClInclude Include="defines.h" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
<ImportGroup Label="ExtensionTargets">
|
<ImportGroup Label="ExtensionTargets">
|
||||||
|
|||||||
@@ -27,6 +27,12 @@
|
|||||||
<ClCompile Include="CStep.cpp">
|
<ClCompile Include="CStep.cpp">
|
||||||
<Filter>Source Files</Filter>
|
<Filter>Source Files</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
|
<ClCompile Include="CUserInput.cpp">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="CPrint.cpp">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClInclude Include="CGame.h">
|
<ClInclude Include="CGame.h">
|
||||||
@@ -38,5 +44,14 @@
|
|||||||
<ClInclude Include="CStep.h">
|
<ClInclude Include="CStep.h">
|
||||||
<Filter>Header Files</Filter>
|
<Filter>Header Files</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="CUserInput.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="defines.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="CPrint.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
||||||
@@ -1,17 +1,15 @@
|
|||||||
|
// Bulls and Cows the game
|
||||||
// bulls-and-cows.cpp
|
// bulls-and-cows.cpp
|
||||||
//
|
//
|
||||||
#include <Windows.h>
|
|
||||||
#include "..\..\..\MyFunctions\SetUserLocale.h"
|
#include "..\..\..\MyFunctions\SetUserLocale.h"
|
||||||
#include "CGame.h"
|
#include "CGame.h"
|
||||||
//#include <iostream>
|
|
||||||
|
|
||||||
int wmain(int argc, wchar_t* argv[])
|
int wmain(int argc, wchar_t* argv[])
|
||||||
{
|
{
|
||||||
if (!SetUserLocale()) return 1;
|
if (!SetUserLocale()) return 1;
|
||||||
|
|
||||||
CGame game;
|
CGame game;
|
||||||
|
game.Init();
|
||||||
game.Init(4);
|
|
||||||
game.Start();
|
game.Start();
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|||||||
28
bulls-and-cows-cpp/defines.h
Normal file
28
bulls-and-cows-cpp/defines.h
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
// Bulls and Cows the game
|
||||||
|
// defines.h
|
||||||
|
//
|
||||||
|
#pragma once
|
||||||
|
#define VERSION 0.4
|
||||||
|
|
||||||
|
#ifdef _DEBUG
|
||||||
|
#define IS_SHOW true
|
||||||
|
#else
|
||||||
|
#define IS_SHOW false
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define strERROR_1 L"Цифры в числе не должны повторяться!"
|
||||||
|
#define strERROR_2_1 L"Вы должны ввести "
|
||||||
|
#define strERROR_2_2 L"-значное число!"
|
||||||
|
|
||||||
|
#define strBULLS L" Б., "
|
||||||
|
#define strCOWS L" К."
|
||||||
|
|
||||||
|
#define strINITIAL_QUERY_1 L"Введите количество цифр в числе (от 3 до 5).\n"
|
||||||
|
#define strINITIAL_QUERY_2 L"Чем больше цифр - тем сложнее. Обычно 4.\n"
|
||||||
|
|
||||||
|
#define strGAME_NAME L"Быки и Коровы."
|
||||||
|
#define strGAME_VERSION L"Версия"
|
||||||
|
#define strGAME_COPYRIGHT L"Copyright (c) 2023 by W0LF aka 'dreamforce'"
|
||||||
|
|
||||||
|
#define strVICTORY L"!!! П О Б Е Д А !!!"
|
||||||
|
#define strNUM_STEPS L"\tКоличество ходов: "
|
||||||
Reference in New Issue
Block a user