-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbred_horse.cpp
50 lines (43 loc) · 1.29 KB
/
bred_horse.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
#include <iostream>
#include <string>
#include <ctime>
#include "horse.h"
#include "userhorse.h"
#include "bred_horse.h"
using namespace std;
// constructor, initialises objects
bred_horse::bred_horse() {
this->name = "";
this->max_speed = 0;
this->min_speed = 0;
this->level = 1;
this->num_wins = 0;
this->generation = 0;
this->dad_name = "";
this->dad_max_speed = 0;
this->dad_min_speed = 0;
this->dad_name = "";
this->mum_max_speed = 0;
this->mum_min_speed = 0;;
}
// function to set variables during breeding
void bred_horse::set_bred_horse(string _name, double max, double min, int _generation) {
this->name = _name;
this->max_speed = max;
this->min_speed = min;
this->generation = _generation;
}
// function to set variables during breedings
void bred_horse::set_parents(string d_name, double d_max, double d_min, string m_name, double m_max, double m_min) {
this->dad_name = d_name;
this->dad_max_speed = d_max;
this->dad_min_speed = d_min;
this->mum_name = m_name;
this->mum_max_speed = m_max;
this->mum_min_speed = m_min;
}
// printing parents
void bred_horse::print_parents() {
cout << "Parent 1 Name: "<< dad_name <<" Parent 1 Max Speed: "<< dad_max_speed << endl;
cout << "Parent 2 Name: "<< mum_name <<" Parent 2 Max Speed: "<< mum_max_speed << endl;
}