-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefinitions.cpp
225 lines (201 loc) · 6.76 KB
/
definitions.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
#include <iterator>
#include <algorithm>
#include <iostream>
#include <map>
#include <bits/stdc++.h>
#include "darts.h"
#include <iomanip>
#include <sstream>
#include <nlohmann/json.hpp>
#include <string>
#include <cstring>
int counter::MINi(size_t a, size_t b) {if (a < b) {return a;} else {return b;}}
counter::counter(){
char pBuf[256];
size_t len = sizeof(pBuf);
int bytes = MINi(readlink("/proc/self/exe", pBuf, len), len - 1);
if (bytes >= 0)
pBuf[bytes] = '\0';
const char* fileN= "/highscore.json";
for (int i = std::strlen(pBuf)-1; ; i--){
if (pBuf[i] == '/'){
pBuf[i] = '\0'; break;
}
else {pBuf[i] = '\0';}
}
pfad = (char*) malloc(std::strlen(pBuf) + std::strlen(fileN)+1);
strcpy(pfad, pBuf );
strcat(pfad, fileN);
std::ifstream file(pfad);
if (file.good()){
hisc_json = nlohmann::json::parse(file);
}
}
void counter::enter_score(){
std::string name;
char repeat;
std::cout << "enter score: ";
std::cin>> score_str;
if (score_str == "h"){
print_hisc();
}
else {
score = std::stoi(score_str);
if (countdown - score >= 0 && countdown - score != 1){
countdown -= score;
std::cout<< "-> -> -> " << countdown<<"\n";
hisc_map_crt[std::to_string(hisc_map_crt.size()+1)] = score; //"\"" + std::to_string(score) + "\"";
if (countdown == 0){
std::cout<< "\t\t\tfinished with " << hisc_map_crt.size() << " darts!\n";
for (auto it = hisc_json.begin(); it != hisc_json.end(); it++){
if (hisc_map_crt.size() < it.value().size()-1 || it.value() == "") {
std::cout<< "\t\t\tnew highscore! (place " << it.key() << ")\n Enter name: ";
std::cin >> name;
hisc_map_crt[name] = 0;
it.value() = hisc_map_crt;
break;
}
}
print_hisc();
std::cout<< "\t\t\tplay again? (y/n)\n";
std::cin>>repeat;
if (repeat == 'y'){
countdown = 501;
std::cout<< countdown << "\t\t\t press h for highscore or \n";
hisc_map_crt = {};
}
}
}
else {
std::cout<< "\t\t\tno score\n";
hisc_map_crt[std::to_string(hisc_map_crt.size()+1)] = 0;
}
}
}
void counter::print_hisc(){
std::cout<< "highscore:\n";
for (auto it = hisc_json.begin(); it != hisc_json.end(); it++){
if (it.value() != ""){
std::cout<< it.key() << ". " << it.value().rbegin().key() << " (" << it.value().size() - 1 << " darts)\n";
}
}
}
counter::result counter::checkout_test(int countdown_p, std::map<std::string, double> current_targets, std::vector<std::pair<int,int>> ct, int i_p, int j_p){
if (i_p == 0){
countdown_p -= 50;
current_targets["Bull "] = 129.032;
ct.push_back({4,50});
}
else if (i_p == -1){
countdown_p -= 25;
current_targets["Outer Bull "] = 677.418;
ct.push_back({5, 25});
}
else {
countdown_p -= j_p * i_p;
current_targets[bed_names[j_p - 1] + std::to_string(i_p) + " "] = diff[j_p-1];
ct.push_back({j_p, i_p});
}
return {countdown_p, current_targets, ct};
}
double counter::diffSum(std::vector<std::pair<int,int>> ct_p){
double diff_sum = 0;
for (auto it = ct_p.begin(); it != ct_p.end(); it++){
diff_sum += diff[it->first-1];
}
return diff_sum;
}
int counter::scoreSum(std::vector<std::pair<int,int>> ct_p){
int score_sum = 0;
for (auto it : ct_p){
if (it.first == 4 || it.first == 5){
score_sum += it.second;
}
else{
score_sum += it.first * it.second;
}
}
return score_sum;
}
int counter::scoreSumSingle(std::vector<std::pair<int,int>> ct_p){
int score_sum = 0;
for (auto it : ct_p){
if (it.first != 4 && it.first != 5){
score_sum += it.second;
}
}
return score_sum;
}
int counter::scoreSumSingle_finish(std::vector<std::pair<int,int>> ct_p){
int score_sum = 0;
for (auto it : ct_p){
if (it != *(ct_p.end()-1)){
if (it.first != 4 && it.first != 5){
score_sum += it.second;
}
}
}
return score_sum;
}
int counter::double_bull_count(std::vector<std::pair<int,int>> ct_p){
int db_count = 0;
for (auto it : ct_p){
if (it.first == 2 || it.first == 4 || it.first == 5){
db_count += 1;
}
}
return db_count;
}
int counter::bull_count(std::vector<std::pair<int,int>> ct_p){
int db_count = 0;
for (auto it : ct_p){
if (it != *ct_p.end()){
if (it.first == 4){
db_count += 1;
}
}
}
return db_count;
}
bool counter::maxSingle(std::vector<std::pair<int,int>> finish_v_p, std::vector<std::pair<int,int>> ct_p){
std::vector<int> f_singleVec, ct_singleVec;
for (auto it : ct_p){
if (it.first != 4 && it.first != 5){
ct_singleVec.push_back(it.second);
}
}
for (auto it : finish_v_p){
f_singleVec.push_back(it.second);
}
std::sort(f_singleVec.begin(), f_singleVec.end());
std::sort(ct_singleVec.begin(), ct_singleVec.end());
for (int i = std::min(finish_v_p.size(), ct_p.size()); i >-1; i--){
if (f_singleVec[i] > ct_singleVec[i]){
return 1;
}
}
return 0;
}
void counter::print(std::vector<std::vector<std::pair<int,int>>> ct_vec){
int count = 0;
std::cout << std::string(45, '-')<< '\n' << "Dart 1\t" << "Dart 2\tDart 3\t";
if (checkout_v.size() > 0){std::cout << "for\t";}
std::cout<< "target area (mm2)" <<'\n';
for (auto i : ct_vec){
if (count >= print_limit){break;}
for (auto el : i){
if (el.second == 50 || el.second == 25){
std::cout<< bed_names[el.first-1] << "\t";
}
else {std::cout<< bed_names[el.first-1] << el.second << "\t";}
}
if(checkout_v.size() > 0){ std::cout<< countdown - scoreSum(i) << '\t';}
std::cout << std::string((2 - (i.size()-1)), '\t') << diffSum(i) << "\n";
count++;
}
}
counter::~counter(){
std::ofstream outfile;
outfile.open(pfad);
outfile << hisc_json;
}