-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.cpp
97 lines (85 loc) · 1.62 KB
/
config.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#include <iostream>
#include <fstream>
#include <string>
#include <ncurses.h>
#include "config.h"
#include "char.h"
using namespace std;
Configuration::Configuration(const char S[])
{
File.open(S);
}
Configuration::~Configuration()
{
if (File.is_open())
File.close();
}
int Configuration::read_params(int& Health, int& Damage)
{
string S[2];
for (int i = 0; i < 2; i++)
{
getline(File, S[0]);
getline(File, S[1]);
if (S[0] == Param_health)
{
try{ Health = stoi(S[1].c_str()); }
catch (...)
{
return 1;
}
}
else
if (S[0] == Param_damage)
{
try{ Damage = stoi(S[1].c_str()); }
catch (...)
{
return 1;
}
}
else
return 1;
}
return 0;
}
int Configuration::read_file()
{
if (!File.is_open())
{
printw("This file doesn't exist!\nGame run with - default - parameters\n");
getch();
return 0;
}
int error;
string S;
getline(File, S);
if (S != Sign)
{
printw("It's not a configuration file!\nGame run with - default - parameters\n");
getch();
return 0;
}
while(getline(File, S))
{
if (S == Word_knight)
error = read_params(Hp_knight, Dm_knight);
if (S == Word_princess)
error = read_params(Hp_princess, Dm_princess);
if (S == Word_zombie)
error = read_params(Hp_zombie, Dm_zombie);
if (S == Word_dragon)
error = read_params(Hp_dragon, Dm_dragon);
if (S == Word_sorcerer)
error = read_params(Hp_sorcerer, Dm_sorcerer);
if (S == Word_fireball)
error = read_params(Hp_fireball, Dm_fireball);
if (error)
{
printw("Configuration file is not correct.\nThe game will be closed!\n");
getch();
return 1;
}
}
return 0;
}