-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstock.cpp
More file actions
377 lines (347 loc) · 13.1 KB
/
stock.cpp
File metadata and controls
377 lines (347 loc) · 13.1 KB
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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
/// @file stock.cpp
/// Implementation of the Stock class.
/*
This program is free software: you can redistribute it and/or modify it under the
terms of the GNU Lesser 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along with this
program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "stock.h"
#include "file_io.h"
#include "format.h"
#include "names.h"
#include "random_price.h"
#include <algorithm>
#include <cassert>
#include <fstream>
#include <iostream>
const int INVALID_OPERATION = -1;
Stock::Stock(void) {
category = random_integer(category_list_size);
name = generate_name(category, 1)[0];
/** The distribution of initial stock price will be consistent across the same
* categories.
* Note that the value '3' is because currently init_stock_price has 3
* possible input values.
*/
price = init_stock_price(category % 3 + 1);
quantity = 0;
attributes[standard_deviation] = init_sd();
attributes[mean] = defaultMean;
attributes[lower_limit] = defaultLowerLimit;
attributes[upper_limit] = defaultUpperLimit;
split_count = 0;
update_history();
}
void Stock::save(const std::string & playerName, int i) {
std::string filesave;
std::ofstream fout;
filesave = SAVE_FOLDER_PREFIX + playerName + "/" + std::to_string(i) + "" +
SAVE_FILE_EXTENSION_TXT; // creating the file path
fout.open(filesave.c_str());
fout << *this; // use operator<< to save the Stock object
fout.close();
}
void Stock::load(const std::string & playerName, int i) {
std::string fileToBeLoaded;
std::ifstream fin;
fileToBeLoaded = SAVE_FOLDER_PREFIX + playerName + "/" + std::to_string(i) + "" +
SAVE_FILE_EXTENSION_TXT;
std::cout << "Loading " << fileToBeLoaded << " ... ";
fin.open(fileToBeLoaded.c_str());
// get the first line, which is category
fin >> *this; // use operator>> to load the Stock object
fin.close();
assert(price <= STOCK_PRICE_LIMIT && "Price exceed the limit");
std::cout << "done" << std::endl;
}
std::ostream & operator<<(std::ostream & fout, const Stock & stock) {
fout << stock.category
<< std::endl; // literally load everything into class into file
fout << stock.name << std::endl;
for (unsigned int index = 0; index < stock.history.size(); index++) {
fout << stock.history[index] << " ";
}
fout << -1 << std::endl; // -1 is the stop code for vector<float> history in
// filesave
fout << stock.quantity << std::endl;
fout << stock.attributes.at(standard_deviation) << " ";
fout << stock.attributes.at(mean) << " ";
fout << stock.attributes.at(lower_limit) << " ";
fout << stock.attributes.at(upper_limit) << std::endl;
fout << stock.split_count << std::endl << std::endl;
// Save the ongoing events, separated by std::endl
for (Stock_event event : stock.events) {
fout << event << std::endl;
}
return fout;
}
std::istream & operator>>(std::istream & fin, Stock & stock) {
fin >> stock.category; // line 1
assert(stock.category < category_list_size && "Invalid category");
// line 2 is entirely the stock name
std::getline(fin >> std::ws, stock.name);
float loadedPrice;
fin >> loadedPrice;
// Erase the history vector and load the new history
stock.history.clear();
while (loadedPrice != -1) {
stock.history.emplace_back(loadedPrice);
fin >> loadedPrice; // line 3
}
// Set the price
stock.price = stock.history.back();
fin >> stock.quantity; // line 4
fin >> stock.attributes[standard_deviation]; // line 5
fin >> stock.attributes[mean];
fin >> stock.attributes[lower_limit];
fin >> stock.attributes[upper_limit];
fin >> stock.split_count; // line 6
// Clear the events list
stock.events.clear();
// Skip 2 empty lines
std::string emptyLine;
std::getline(fin >> std::ws, emptyLine);
std::getline(fin >> std::ws, emptyLine);
std::string loadedEventString;
while (std::getline(fin, loadedEventString)) {
Stock_event loadedEvent;
std::istringstream(loadedEventString) >> loadedEvent;
// Check the loaded event is valid
if (loadedEvent.event_id == getStockSplitEvent().event_id) {
stock.add_event(loadedEvent);
continue;
}
assert(
loadedEvent.event_id < all_stock_events.size() && "Invalid event loaded");
Stock_event comparedEvent = all_stock_events[loadedEvent.event_id];
assert(loadedEvent == comparedEvent && "Invalid event loaded");
stock.add_event(loadedEvent);
}
return fin;
}
float Stock::purchase(
float & balance, unsigned int amount, float trading_fees_percent) {
float total_cost = price * amount * (1 + trading_fees_percent);
// Check if the player has enough balance to buy the stock
if (total_cost > balance && price <= 0) {
return INVALID_OPERATION;
}
// Update the balance, quantity, and money_spent
balance -= total_cost;
quantity += amount;
return total_cost;
}
float Stock::sell(float & balance, unsigned int amount, float trading_fees_percent) {
// Check if the player has enough stocks to sell
if (quantity < amount && price <= 0) {
return INVALID_OPERATION;
}
// Calculate the total revenue
float total_revenue = price * amount * (1 - trading_fees_percent);
balance += total_revenue;
quantity -= amount;
return total_revenue;
}
std::string Stock::category_name(void) const { return category_list[category]; }
unsigned int Stock::num_stocks_affordable(
float balance, float trading_fees_percent) const {
float value = balance / (price * (1 + trading_fees_percent));
return value < 0 ? 0 : static_cast<unsigned int>(value);
}
void Stock::update_history(void) {
/** We use vector now! */
history.emplace_back(price);
}
std::vector<float> Stock::return_most_recent_history(unsigned int rounds) {
std::vector<float> recent_history;
if (rounds >= history.size()) {
return history;
}
for (unsigned int i = history.size() - rounds; i < history.size(); i++) {
recent_history.emplace_back(history[i]);
}
return recent_history;
}
float Stock::delta_price(void) {
// Stock prices are stored in the history array
if (history.size() < 2) {
// If there are less than two prices in the history array, return 0
return 0;
}
// Return the change of the last two prices
return history[history.size() - 1] - history[history.size() - 2];
}
float Stock::delta_price_percentage(void) {
if (history.size() < 2 || history[history.size() - 1] < 0 ||
history[history.size() - 2] < 0) {
/** If there are less than two prices in the history array, return 0
* If the last two prices are negative, return 0, as it is not possible to
* calculate the percentage change
*/
return 0;
}
return delta_price() / history[history.size() - 2];
}
void Stock::add_event(const Stock_event & event) {
if (!can_add_event(event)) {
// If the event is mutually exclusive with ongoing events,
// ignore it and do nothing.
return;
}
// If the event does not exist, add it to the std::list of events
// Otherwise, update the duration of the event by deleting the old one and add the
// new one.
std::list<Stock_event>::iterator event_itr = events.begin();
while (event_itr != events.end()) {
if (*event_itr == event) {
event_itr = events.erase(event_itr);
}
else {
event_itr++;
}
}
events.emplace_back(event);
}
bool Stock::can_add_event(const Stock_event & event) {
std::list<Stock_event>::iterator event_itr = events.begin();
while (event_itr != events.end()) {
if (!event_itr->mutually_exclusive_events.empty()) {
for (unsigned int i = 0; i < event_itr->mutually_exclusive_events.size();
i++) {
if (event_itr->mutually_exclusive_events[i] == event.event_id) {
return false;
}
}
}
event_itr++;
}
return true;
}
void Stock::remove_obselete_event(void) {
std::list<Stock_event>::iterator event_itr = events.begin();
while (event_itr != events.end()) {
if (event_itr->duration <= 0) {
event_itr = events.erase(event_itr);
}
else {
event_itr++;
}
}
}
float Stock::get_event_attribute(stock_modifiers attribute) {
float sum = 0;
std::list<Stock_event>::iterator event_itr = events.begin();
while (event_itr != events.end()) {
sum += event_itr->modifiers[attribute];
event_itr++; // Bug fix: infinite loop
}
return sum;
}
Stock_event Stock::setup_STOCK_SPLIT_EVENT(void) {
Stock_event event_copy = getStockSplitEvent();
event_copy.text = name + event_copy.text;
event_copy.category = category;
return event_copy;
}
void Stock::next_round(void) {
/** Update the price of the stock.
* If the price is less than 1000, the price will increase or decrease by a random
* percentage. If the price is more than 1000, the price will be halved and the
* quantity will be doubled.
*/
float price_diff = percentage_change_price(*this) / 100;
// Reduce all events duration by one.
std::list<Stock_event>::iterator event_itr = events.begin();
while (event_itr != events.end()) {
if (event_itr->duration > durationDecreaseMultiplier) {
event_itr->duration -= durationDecreaseMultiplier;
}
else {
event_itr->duration = 0;
}
event_itr++;
}
if (!(price * (1 + price_diff) >= STOCK_PRICE_LIMIT)) {
price *= (1 + price_diff);
}
else {
price /= 2;
quantity *= 2;
split_count++;
add_event(setup_STOCK_SPLIT_EVENT());
}
remove_obselete_event();
update_history();
}
std::vector<unsigned int> Stock::get_event_ids(void) {
std::vector<unsigned int> event_ids;
std::list<Stock_event>::iterator event_itr = events.begin();
while (event_itr != events.end()) {
event_ids.emplace_back(event_itr->event_id);
event_itr++;
}
return event_ids;
}
float Stock::get_total_attribute(stock_modifiers attribute) {
return attributes[attribute] + get_event_attribute(attribute);
}
void sortStocksList(std::vector<Stock> & stocks_list, SortingMethods sortMethod,
SortingDirections sortDirection) {
switch (sortMethod) {
case by_name:
std::sort(stocks_list.begin(), stocks_list.end(),
[](Stock a, Stock b) { return a.get_name() < b.get_name(); });
break;
case by_category:
std::sort(stocks_list.begin(), stocks_list.end(),
[](Stock a, Stock b) { return a.get_category() < b.get_category(); });
break;
case by_price:
std::sort(stocks_list.begin(), stocks_list.end(),
[](Stock a, Stock b) { return a.get_price() < b.get_price(); });
break;
case by_quantity:
std::sort(stocks_list.begin(), stocks_list.end(),
[](Stock a, Stock b) { return a.get_quantity() < b.get_quantity(); });
break;
case by_sd:
std::sort(stocks_list.begin(), stocks_list.end(), [](Stock a, Stock b) {
return a.get_total_attribute(standard_deviation) <
b.get_total_attribute(standard_deviation);
});
break;
case by_mean:
std::sort(stocks_list.begin(), stocks_list.end(), [](Stock a, Stock b) {
return a.get_total_attribute(mean) < b.get_total_attribute(mean);
});
break;
case by_lower_limit:
std::sort(stocks_list.begin(), stocks_list.end(), [](Stock a, Stock b) {
return a.get_total_attribute(lower_limit) <
b.get_total_attribute(lower_limit);
});
break;
case by_upper_limit:
std::sort(stocks_list.begin(), stocks_list.end(), [](Stock a, Stock b) {
return a.get_total_attribute(upper_limit) <
b.get_total_attribute(upper_limit);
});
break;
default:
break;
}
if (sortDirection == descending) {
std::reverse(stocks_list.begin(), stocks_list.end());
}
}
float Stock::calculateStockValue(const float & trading_fees_percent) const {
return price * quantity * (1 - trading_fees_percent);
}
float Stock::calculateTradingFeesLost(const float & trading_fees_percent) const {
return price * quantity * trading_fees_percent;
}