-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspacemines.go
215 lines (180 loc) · 4.25 KB
/
spacemines.go
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
package main
import (
"fmt"
"time"
"math/rand"
)
type Colony struct {
numMines int
numPeople int
money int
food int
foodPrice int
oreProduction int
oreStorage int
year int
satisfaction float32
minePrice int
orePrice int
failed bool
}
func initColony() *Colony {
c := Colony{}
c.numMines = random(3,6)
c.numPeople = random(40, 60)
c.money = random(10, 50) * c.numPeople
c.foodPrice = random(40,80)
c.oreProduction = random(40,80)
c.oreStorage = 0
c.year = 1;
c.satisfaction = 1
c.rollPriceDice()
c.failed = false
return &c;
}
func (c *Colony) rollPriceDice() {
c.minePrice = random(2000, 4000)
c.orePrice = random(7, 12)
}
func random(min, max int) int {
rand.Seed(time.Now().UnixNano())
return rand.Intn(max - min) + min
}
func randomFloat() float64 {
rand.Seed(time.Now().UnixNano())
return rand.Float64()
}
func (c *Colony) displayColonyStats() {
fmt.Println("Year", c.year)
fmt.Println("There are", c.numPeople, "people in the colony")
fmt.Println("You have", c.numMines, "mines and $", c.money)
fmt.Println("Satisfaction Factor ", c.satisfaction)
fmt.Println("")
fmt.Println("Your mines produced ", c.oreProduction, "tons each")
c.oreStorage += c.oreProduction * c.numMines
fmt.Println("Ore in store:", c.oreStorage, "tons")
}
func askForIntInput(s string) int {
var output int
for {
fmt.Printf("%s", s)
_, err := fmt.Scanf("%d\n",&output)
if err != nil {
fmt.Println("That input was invalid")
continue
} else {
break
}
}
return output
}
func (c *Colony) oreSale() {
for {
oreToSell := askForIntInput("How much ore to sell? ")
if oreToSell >= 0 && oreToSell <= c.oreStorage{
c.oreStorage -= oreToSell
c.money += oreToSell * c.orePrice
break
}
}
}
func (c *Colony) mineSale() {
for {
minesToSell := askForIntInput("How many mines to sell? ")
if minesToSell >= 0 && minesToSell <= c.numMines{
c.numMines -= minesToSell
c.money += minesToSell * c.minePrice
break
}
}
}
func (c *Colony) foodBuy() {
for {
foodToBuy := askForIntInput("How much to spend on food? (Appr. $100 EA.) ")
if foodToBuy >= 0 && foodToBuy <= c.money{
c.food += foodToBuy
c.money -= foodToBuy
if foodToBuy / c.numPeople > 120 {
c.satisfaction+=.1
}
if foodToBuy / c.numPeople < 80 {
c.satisfaction-=.2
}
break
}else{
fmt.Println("You don't have enough money to afford that amount of food.")
}
}
}
func (c *Colony) mineBuy() {
for {
minesToBuy := askForIntInput("How many more mines to buy? ")
if minesToBuy >= 0 && (minesToBuy * c.minePrice) <= c.money{
c.numMines += minesToBuy
c.money -= minesToBuy * c.minePrice
break
}
}
}
func main(){
c := initColony()
for c.year <= 10 && c.failed == false {
c.displayColonyStats()
// Selling
fmt.Println("Selling:")
fmt.Println("Ore selling price: $", c.orePrice, "/ton")
fmt.Println("Mine selling price: $", c.minePrice, "/mine")
c.oreSale()
c.mineSale()
// Buying
fmt.Println("")
fmt.Println("You have $", c.money)
fmt.Println("")
fmt.Println("Buying")
c.foodBuy()
c.mineBuy()
// If there are less than 10 people per mine then game over
if c.numPeople / c.numMines < 10 {
c.failed = true
fmt.Println("You've overworked everyone, Game Over!")
break
}
// If satisfaction is high, more people arrive
if c.satisfaction > 1.1 {
c.numPeople += random(1,10)
}
// People leave if satisfaction is low
if c.satisfaction < 0.9 {
c.numPeople -= random(1,10)
}
// If the satisfaction is too low then game over
if c.satisfaction < 0.6 {
c.failed = true
fmt.Println("The people revolted, Game Over!")
break
}
// If there are less than 30 people in total then game over
if c.numPeople < 30 {
c.failed = true
fmt.Println("Not enough people left, Game Over!")
break
}
// Introduce a small chance that half the population gets killed
if randomFloat() < 0.1 {
fmt.Println("RADIOACTIVE LEAK....MANY DIE!")
c.numPeople /= 2
}
// If the amount produced per mine is very high, ore price is halved
if c.oreProduction > 150 {
fmt.Println("Market Glut - Price Drops!")
c.foodPrice /= 2
}
// Player has survived another year
c.rollPriceDice()
c.year++
fmt.Println("")
}
if c.failed == false {
fmt.Println("You survived your term of office")
}
}