Refactor, new menu, issue feature update
It's now possible to make issue options enabled or disabled conditional upon having taken other actions with that issue before.
This commit is contained in:
parent
ccd141ddc5
commit
e0dad09045
4
go.mod
4
go.mod
@ -2,4 +2,6 @@ module git.chromaticdragon.app/kistaro/KoboldSim
|
||||
|
||||
go 1.20
|
||||
|
||||
require git.chromaticdragon.app/kistaro/CardSimEngine v0.1.3
|
||||
require git.chromaticdragon.app/kistaro/CardSimEngine v0.3.0
|
||||
|
||||
require golang.org/x/exp v0.0.0-20230321023759-10a507213a29 // indirect
|
||||
|
8
go.sum
8
go.sum
@ -1,4 +1,4 @@
|
||||
git.chromaticdragon.app/kistaro/CardSimEngine v0.1.2 h1:+8KVFhSxXbQO7CPzmL89sJ+qjgU4J42Z5OinGuDMR0U=
|
||||
git.chromaticdragon.app/kistaro/CardSimEngine v0.1.2/go.mod h1:VFaOagdbtM6gH87ioHent8v76nDh9PddpymMqWdrLfI=
|
||||
git.chromaticdragon.app/kistaro/CardSimEngine v0.1.3 h1:rNaDDXnPVoMpavpx4vR9k30sl0nO0BnCe32nZbAF2IM=
|
||||
git.chromaticdragon.app/kistaro/CardSimEngine v0.1.3/go.mod h1:VFaOagdbtM6gH87ioHent8v76nDh9PddpymMqWdrLfI=
|
||||
git.chromaticdragon.app/kistaro/CardSimEngine v0.3.0 h1:PYpW6+XTod3oJHf7JyfCpHMCdGILrvyqSJPH/71FMRQ=
|
||||
git.chromaticdragon.app/kistaro/CardSimEngine v0.3.0/go.mod h1:FYuoJHaK7lDI8Fwf4lZY2Y+8P9zavT4oLvSFUG6drw4=
|
||||
golang.org/x/exp v0.0.0-20230321023759-10a507213a29 h1:ooxPy7fPvB4kwsA2h+iBNHkAbp/4JxTSwCmvdjEYmug=
|
||||
golang.org/x/exp v0.0.0-20230321023759-10a507213a29/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc=
|
||||
|
@ -12,15 +12,15 @@ var cards = []Card{
|
||||
UnenactedDesc: cardsim.MsgStr(`Your war chief paces irritably. "We have terrible threats facing us. It's imperative that we build up our numbers in both the military and the domestic sense. I want creches under military control and a good hunting crew to supply them with food."`),
|
||||
EnactedDesc: cardsim.MsgStr("[current policy] Your war chief is presntly monitoring the situation, building up your military, and securing your creches."),
|
||||
Do: func(p *Player) (cardsim.Message, error) {
|
||||
p.Stats.Kobolds.Value += 100
|
||||
p.Stats.ScavengingIncome.Value += 0.01
|
||||
p.Stats.WarExpense.Value += 0.02
|
||||
p.Stats.Kobolds += 100
|
||||
p.Stats.ScavengingIncome += 0.01
|
||||
p.Stats.WarExpense += 0.02
|
||||
return cardsim.MsgStr("Kobolds are known to be born warriors."), nil
|
||||
},
|
||||
Undo: func(p *Player) error {
|
||||
p.Stats.Kobolds.Value -= 100
|
||||
p.Stats.ScavengingIncome.Value -= 0.01
|
||||
p.Stats.WarExpense.Value -= 0.02
|
||||
p.Stats.Kobolds -= 100
|
||||
p.Stats.ScavengingIncome -= 0.01
|
||||
p.Stats.WarExpense -= 0.02
|
||||
return nil
|
||||
},
|
||||
CanDo: YesWeCan,
|
||||
@ -29,15 +29,15 @@ var cards = []Card{
|
||||
UnenactedDesc: cardsim.MsgStr(`Your head miner considers the matter worriedly. "Creches under military control? No. That would invite chaos. We need to dig deeper; we can have a peaceful, orderly society if we just get far enough away from surfacers."`),
|
||||
EnactedDesc: cardsim.MsgStr("[current policy] Your head miner is presently leading a project to dig as far away from the surface as possible."),
|
||||
Do: func(p *Player) (cardsim.Message, error) {
|
||||
p.Stats.Kobolds.Value += 40
|
||||
p.Stats.MiningIncome.Value += 0.02
|
||||
p.Stats.BureaucracyExpense.Value += 0.01
|
||||
p.Stats.Kobolds += 40
|
||||
p.Stats.MiningIncome += 0.02
|
||||
p.Stats.BureaucracyExpense += 0.01
|
||||
return cardsim.MsgStr("Kobolds are known to be cowards hiding in the dark."), nil
|
||||
},
|
||||
Undo: func(p *Player) error {
|
||||
p.Stats.Kobolds.Value -= 40
|
||||
p.Stats.MiningIncome.Value -= 0.02
|
||||
p.Stats.BureaucracyExpense.Value -= 0.01
|
||||
p.Stats.Kobolds -= 40
|
||||
p.Stats.MiningIncome -= 0.02
|
||||
p.Stats.BureaucracyExpense -= 0.01
|
||||
return nil
|
||||
},
|
||||
CanDo: YesWeCan,
|
||||
@ -46,15 +46,15 @@ var cards = []Card{
|
||||
UnenactedDesc: cardsim.MsgStr(`Your nursery director is incensed. "Creches under military control? Never! Let young kobolds play! In fact, cut the military just for suggesting this. The threats facing us are completely overstated."`),
|
||||
EnactedDesc: cardsim.MsgStr("[current policy] Military funding has been diverted into early childhood education."),
|
||||
Do: func(p *Player) (cardsim.Message, error) {
|
||||
p.Stats.Kobolds.Value -= 40
|
||||
p.Stats.ScavengingIncome.Value -= 0.01
|
||||
p.Stats.WarExpense.Value -= 0.02
|
||||
p.Stats.Kobolds -= 40
|
||||
p.Stats.ScavengingIncome -= 0.01
|
||||
p.Stats.WarExpense -= 0.02
|
||||
return cardsim.MsgStr("An undefended hunting outpost near the surface was recently wiped out by a raid."), nil
|
||||
},
|
||||
Undo: func(p *Player) error {
|
||||
p.Stats.Kobolds.Value += 40
|
||||
p.Stats.ScavengingIncome.Value += 0.01
|
||||
p.Stats.WarExpense.Value += 0.02
|
||||
p.Stats.Kobolds += 40
|
||||
p.Stats.ScavengingIncome += 0.01
|
||||
p.Stats.WarExpense += 0.02
|
||||
return nil
|
||||
},
|
||||
CanDo: YesWeCan,
|
||||
@ -63,11 +63,11 @@ var cards = []Card{
|
||||
Default: &BasicPolicy{
|
||||
UnenactedDesc: cardsim.MsgStr("This isn't about a disaster and can probably be safely dismissed."),
|
||||
Do: func(p *Player) (cardsim.Message, error) {
|
||||
p.Stats.Kobolds.Value += 20
|
||||
p.Stats.Kobolds += 20
|
||||
return cardsim.MsgStr("Creche control doesn't shift that easily."), nil
|
||||
},
|
||||
Undo: func(p *Player) error {
|
||||
p.Stats.Kobolds.Value -= 20
|
||||
p.Stats.Kobolds -= 20
|
||||
return nil
|
||||
},
|
||||
CanDo: YesWeCan,
|
||||
@ -102,15 +102,15 @@ var cards = []Card{
|
||||
UnenactedDesc: cardsim.MsgStr(`Your Minister of Administration is practically jumping for joy. "This is our opportunity to prove that we're a prosperous society and attract some fresh blood! We need to raise salaries in the bureaucracy, grant some time off to our bureaucrats to make sure they can attend, and try to hire talent away from other nations. We'll forge productive trade relations by this, you'll see!`),
|
||||
EnactedDesc: cardsim.MsgStr("[current policy] Your bureaucrats are really looking forward to attending, where they can boast about how the festival boosted their salaries."),
|
||||
Do: func(p *Player) (cardsim.Message, error) {
|
||||
p.Stats.Kobolds.Value += 80
|
||||
p.Stats.ScavengingIncome.Value += 0.01
|
||||
p.Stats.BureaucracyExpense.Value += 0.03
|
||||
p.Stats.Kobolds += 80
|
||||
p.Stats.ScavengingIncome += 0.01
|
||||
p.Stats.BureaucracyExpense += 0.03
|
||||
return cardsim.MsgStr("Bureaucrats are considered pillars of society."), nil
|
||||
},
|
||||
Undo: func(p *Player) error {
|
||||
p.Stats.Kobolds.Value -= 80
|
||||
p.Stats.ScavengingIncome.Value -= 0.01
|
||||
p.Stats.BureaucracyExpense.Value -= 0.03
|
||||
p.Stats.Kobolds -= 80
|
||||
p.Stats.ScavengingIncome -= 0.01
|
||||
p.Stats.BureaucracyExpense -= 0.03
|
||||
return nil
|
||||
},
|
||||
CanDo: YesWeCan,
|
||||
@ -119,16 +119,18 @@ var cards = []Card{
|
||||
UnenactedDesc: cardsim.MsgStr(`Your Minister of Finance pulls you aside. "This is a good opportunity to head-hunt. Bureaucrats from many nations will be attending. There's got to be some who'll work for less than the ones we've got. There are some terribly threatened or impoverished communities among kobolds.`),
|
||||
EnactedDesc: cardsim.MsgStr("[current policy] Your nation's policy is clear: the festival of bureaucracy is a chance to trade workers with other kobold nations in your attempts to build a more efficient government."),
|
||||
Do: func(p *Player) (cardsim.Message, error) {
|
||||
p.Stats.Kobolds.Value += 20
|
||||
p.Stats.BureaucracyExpense.Value -= 0.01
|
||||
p.Stats.Kobolds += 20
|
||||
p.Stats.BureaucracyExpense -= 0.01
|
||||
return cardsim.MsgStr("Immigrant bureaucrats complain about being under-appreciated."), nil
|
||||
},
|
||||
Undo: func(p *Player) error {
|
||||
p.Stats.Kobolds.Value -= 20
|
||||
p.Stats.BureaucracyExpense.Value += 0.01
|
||||
p.Stats.Kobolds -= 20
|
||||
p.Stats.BureaucracyExpense += 0.01
|
||||
return nil
|
||||
},
|
||||
CanDo: func(p *Player) bool { return p.Stats.BureaucracyExpense.Value >= 0.02 },
|
||||
CanDo: func(b *BasicPolicy, p *Player) bool {
|
||||
return p.Stats.BureaucracyExpense >= 0.02 && b.LastEnactedIdx != 3
|
||||
},
|
||||
// CanDo: func(p *Player) bool {
|
||||
// if p.Stats.GovBureaucracyExpense.Value >= 0.02 {
|
||||
// return true
|
||||
@ -141,28 +143,30 @@ var cards = []Card{
|
||||
UnenactedDesc: cardsim.MsgStr(`Your Minister of Finance greets you exuberantly. "We've trimmed the wages of the bureaucracy beautifully, but maybe we can scout some outright volunteers. Some nations are absolute disasters, after all.`),
|
||||
EnactedDesc: cardsim.MsgStr(`[current policy] It's hard to find volunteer workers at the festival, but your nation is doing its best.`),
|
||||
Do: func(p *Player) (cardsim.Message, error) {
|
||||
p.Stats.Kobolds.Value += 10
|
||||
p.Stats.BureaucracyExpense.Value -= 0.02
|
||||
p.Stats.Kobolds += 10
|
||||
p.Stats.BureaucracyExpense -= 0.02
|
||||
return cardsim.MsgStr("The local bureaucracy is staffed by volunteer labor."), nil
|
||||
},
|
||||
Undo: func(p *Player) error {
|
||||
p.Stats.Kobolds.Value -= 10
|
||||
p.Stats.BureaucracyExpense.Value += 0.02
|
||||
p.Stats.Kobolds -= 10
|
||||
p.Stats.BureaucracyExpense += 0.02
|
||||
return nil
|
||||
},
|
||||
CanDo: func(p *Player) bool { return p.Stats.BureaucracyExpense.Value < 0.02 },
|
||||
CanDo: func(b *BasicPolicy, p *Player) bool {
|
||||
return p.Stats.BureaucracyExpense < 0.02 && b.LastEnactedIdx != 3
|
||||
},
|
||||
},
|
||||
&BasicPolicy{
|
||||
UnenactedDesc: cardsim.MsgStr(`One of your non-bureaucrat friends has been in a foul temper. "This festival is everything that's wrong with our society. Life isn't about filling out forms. We ought to snub this festival and outright fire some bureaucrats."`),
|
||||
EnactedDesc: cardsim.MsgStr("Your nation currently bans the International Festival of Bureaucracy. There will be no local celebration without a policy change."),
|
||||
Do: func(p *Player) (cardsim.Message, error) {
|
||||
p.Stats.Kobolds.Value -= 80
|
||||
p.Stats.BureaucracyExpense.Value -= 0.04
|
||||
p.Stats.Kobolds -= 80
|
||||
p.Stats.BureaucracyExpense -= 0.04
|
||||
return cardsim.MsgStr("A wave of bureaucrats just emigrated along with kobolds incensed by the nation's lack of respect for administration."), nil
|
||||
},
|
||||
Undo: func(p *Player) error {
|
||||
p.Stats.Kobolds.Value += 80
|
||||
p.Stats.BureaucracyExpense.Value += 0.04
|
||||
p.Stats.Kobolds += 80
|
||||
p.Stats.BureaucracyExpense += 0.04
|
||||
return nil
|
||||
},
|
||||
CanDo: YesWeCan,
|
||||
@ -172,11 +176,11 @@ var cards = []Card{
|
||||
UnenactedDesc: cardsim.MsgStr("Some kobolds will attend the festival on their own, and we may face desertions for our lack of interest."),
|
||||
EnactedDesc: cardsim.MsgStr("Some kobolds will attend the festival on their own. No change is expected."),
|
||||
Do: func(p *Player) (cardsim.Message, error) {
|
||||
p.Stats.Kobolds.Value -= 20
|
||||
p.Stats.Kobolds -= 20
|
||||
return cardsim.MsgStr("A festival of bureaucracy lured away a few kobolds to other nations."), nil
|
||||
},
|
||||
Undo: func(p *Player) error {
|
||||
p.Stats.Kobolds.Value += 20
|
||||
p.Stats.Kobolds += 20
|
||||
return nil
|
||||
},
|
||||
CanDo: YesWeCan,
|
||||
@ -187,13 +191,13 @@ var cards = []Card{
|
||||
&DisabledPolicy{cardsim.MsgStr("Neglecting the event would be less popular and more inefficient than our current policy.")},
|
||||
&FuncPolicy{
|
||||
OptionTextFunc: func(p *Player) (cardsim.Message, error) {
|
||||
if p.Stats.BureaucracyExpense.Value >= -0.03 {
|
||||
if p.Stats.BureaucracyExpense >= -0.03 {
|
||||
return cardsim.MsgStr("Permitting the festival will yield some immigration, but we'll be expected to rebuild our bureaucracy."), nil
|
||||
}
|
||||
return cardsim.MsgStr("Permitting the festival will yield some immigration."), nil
|
||||
},
|
||||
EnactFunc: func(p *Player) (cardsim.Message, error) {
|
||||
if p.Stats.BureaucracyExpense.Value >= -0.03 {
|
||||
if p.Stats.BureaucracyExpense >= -0.03 {
|
||||
return cardsim.MsgStr("A festival of bureaucracy just saw the nation's bureaucracy rebuilt."), ErrKeepMessage
|
||||
}
|
||||
return cardsim.MsgStr("A festival of bureaucracy brought in immigrants wondering at the nation's lack thereof."), ErrKeepMessage
|
||||
|
@ -114,25 +114,29 @@ type BasicPolicy struct {
|
||||
NothingChanged cardsim.Message
|
||||
Do func(*Player) (cardsim.Message, error)
|
||||
Undo func(*Player) error
|
||||
CanDo func(*Player) bool
|
||||
CanDo func(*BasicPolicy, *Player) bool
|
||||
|
||||
currentlyEnacted bool
|
||||
CurrentlyEnacted bool
|
||||
LastEnactedPolicy Policy
|
||||
LastEnactedIdx int
|
||||
}
|
||||
|
||||
// YesWeCan returns true. It's the default value for BasicPolicy.CanDo / BasicPolicy.CanUndo.
|
||||
func YesWeCan(*Player) bool {
|
||||
func YesWeCan(*BasicPolicy, *Player) bool {
|
||||
return true
|
||||
}
|
||||
|
||||
// LastEnacted notifies b about the last-enacted policy in its group. It updates
|
||||
// b.currentlyEnacted accordingly.
|
||||
func (b *BasicPolicy) LastEnacted(_ int, p Policy) {
|
||||
b.currentlyEnacted = b.Is(p)
|
||||
func (b *BasicPolicy) LastEnacted(i int, p Policy) {
|
||||
b.LastEnactedPolicy = p
|
||||
b.LastEnactedIdx = i
|
||||
b.CurrentlyEnacted = b.Is(p)
|
||||
}
|
||||
|
||||
// OptionText implements CardOption.
|
||||
func (b *BasicPolicy) OptionText(*Player) (cardsim.Message, error) {
|
||||
if b.currentlyEnacted {
|
||||
if b.CurrentlyEnacted {
|
||||
if b.EnactedDesc == nil {
|
||||
return nil, ErrUnimplemented
|
||||
}
|
||||
@ -149,7 +153,7 @@ func (b *BasicPolicy) Enact(p *Player) (cardsim.Message, error) {
|
||||
if b.Do == nil {
|
||||
return nil, ErrUnimplemented
|
||||
}
|
||||
if b.currentlyEnacted {
|
||||
if b.CurrentlyEnacted {
|
||||
p.ActionsRemaining++
|
||||
if b.NothingChanged == nil {
|
||||
b.NothingChanged = cardsim.MsgStr("You continue your current approach.")
|
||||
@ -161,7 +165,7 @@ func (b *BasicPolicy) Enact(p *Player) (cardsim.Message, error) {
|
||||
|
||||
// Unenact implements Policy.
|
||||
func (b *BasicPolicy) Unenact(p *Player) error {
|
||||
if !b.currentlyEnacted {
|
||||
if !b.CurrentlyEnacted {
|
||||
return ErrPolicyNotEnacted
|
||||
}
|
||||
if b.Undo == nil {
|
||||
@ -172,13 +176,13 @@ func (b *BasicPolicy) Unenact(p *Player) error {
|
||||
|
||||
// Enabled implements CardOption.
|
||||
func (b *BasicPolicy) Enabled(p *Player) bool {
|
||||
if b.currentlyEnacted {
|
||||
if b.CurrentlyEnacted {
|
||||
return true
|
||||
}
|
||||
if b.CanDo == nil {
|
||||
panic(ErrUnimplemented)
|
||||
}
|
||||
return b.CanDo(p)
|
||||
return b.CanDo(b, p)
|
||||
}
|
||||
|
||||
func (b *BasicPolicy) Is(p Policy) bool {
|
||||
@ -192,22 +196,22 @@ func (b *BasicPolicy) Is(p Policy) bool {
|
||||
// policy. Which policy is used is determined by what the previous policy for
|
||||
// the card was (as reported via a call to LastEnacted):
|
||||
//
|
||||
// * If no policy has yet been enacted, use FirstTime.
|
||||
// * If a policy has been enacted, use the Policy at the slot in Variants
|
||||
// that corresponds to the slot (on the Card) of the currently-enacted policy.
|
||||
// * If the policy retrieved in this way returns ErrUnimplemented, throw away
|
||||
// its response and use Default instead. For Enabled, which does not have
|
||||
// an error component to its return value, look for ErrUnimplemented as the
|
||||
// argument to a Panic call, instead.
|
||||
// * If the policy retrieved in this way returns ErrKeepMessage when Enact
|
||||
// is called, it calls Default for the side effects but ignores its message,
|
||||
// retaining the message from the original call. This is to avoid having to
|
||||
// repeat the same Enact function except with different text each time.
|
||||
// OptionText does this too, even though OptionText doesn't have side effects,
|
||||
// so the same helper function can create a "constant message" callback
|
||||
// that works the same for both fields so someone implementing a card won't
|
||||
// accidentally fail to enact their policy's effects by using the wrong one
|
||||
// in the wrong slot.
|
||||
// - If no policy has yet been enacted, use FirstTime.
|
||||
// - If a policy has been enacted, use the Policy at the slot in Variants
|
||||
// that corresponds to the slot (on the Card) of the currently-enacted policy.
|
||||
// - If the policy retrieved in this way returns ErrUnimplemented, throw away
|
||||
// its response and use Default instead. For Enabled, which does not have
|
||||
// an error component to its return value, look for ErrUnimplemented as the
|
||||
// argument to a Panic call, instead.
|
||||
// - If the policy retrieved in this way returns ErrKeepMessage when Enact
|
||||
// is called, it calls Default for the side effects but ignores its message,
|
||||
// retaining the message from the original call. This is to avoid having to
|
||||
// repeat the same Enact function except with different text each time.
|
||||
// OptionText does this too, even though OptionText doesn't have side effects,
|
||||
// so the same helper function can create a "constant message" callback
|
||||
// that works the same for both fields so someone implementing a card won't
|
||||
// accidentally fail to enact their policy's effects by using the wrong one
|
||||
// in the wrong slot.
|
||||
type VerbosePolicy struct {
|
||||
Default Policy
|
||||
FirstTime Policy
|
||||
@ -254,7 +258,7 @@ func (v *VerbosePolicy) fillDefaults() {
|
||||
for len(v.Variants) <= v.lastIdx {
|
||||
v.Variants = append(v.Variants, v.Default)
|
||||
}
|
||||
if v.lastIdx > 0 && v.Variants[v.lastIdx] == nil {
|
||||
if v.lastIdx >= 0 && v.Variants[v.lastIdx] == nil {
|
||||
v.Variants[v.lastIdx] = v.Default
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,10 @@
|
||||
package koboldsim
|
||||
|
||||
import "git.chromaticdragon.app/kistaro/CardSimEngine/cardsim"
|
||||
import (
|
||||
"strings"
|
||||
|
||||
"git.chromaticdragon.app/kistaro/CardSimEngine/cardsim"
|
||||
)
|
||||
|
||||
func InitPlayer() *Player {
|
||||
p := cardsim.InitPlayer(NewKoboldMine())
|
||||
@ -13,6 +17,16 @@ func InitPlayer() *Player {
|
||||
Name: cardsim.MsgStr("All Stats"),
|
||||
Intro: cardsim.MsgStr("All available statistics."),
|
||||
},
|
||||
&cardsim.BasicStatsPanel[*KoboldMine]{
|
||||
Name: cardsim.MsgStr("Per Capita Economic"),
|
||||
Intro: cardsim.MsgStr("Yield and Investment per Capita"),
|
||||
Filter: cardsim.All(
|
||||
cardsim.VisibleOrDebug[*KoboldMine],
|
||||
func(p *Player, s cardsim.Stat) bool {
|
||||
return strings.Contains(s.StatName(), "Productivity") || strings.Contains(s.StatName(), "Investment")
|
||||
},
|
||||
),
|
||||
},
|
||||
}
|
||||
p.Prompt = &cardsim.BasicStatsPanel[*KoboldMine]{
|
||||
Name: cardsim.MsgStr("The Kobold Mine"),
|
||||
@ -21,6 +35,7 @@ func InitPlayer() *Player {
|
||||
"Kobolds",
|
||||
"Total Sector Income",
|
||||
"Total Government Expense",
|
||||
"Tax Rate",
|
||||
),
|
||||
}
|
||||
p.State = cardsim.GameActive
|
||||
|
@ -6,48 +6,59 @@ import (
|
||||
|
||||
// KoboldMine is the state of a kobold mine.
|
||||
type KoboldMine struct {
|
||||
Kobolds cardsim.Stored[int64]
|
||||
Kobolds int64 `cardsim:"stat"`
|
||||
|
||||
MiningIncome cardsim.Stored[float64]
|
||||
ScavengingIncome cardsim.Stored[float64]
|
||||
AlchemyIncome cardsim.Stored[float64]
|
||||
HospitalityIncome cardsim.Stored[float64]
|
||||
AgricultureIncome cardsim.Stored[float64]
|
||||
ManufacturingIncome cardsim.Stored[float64]
|
||||
PlanarIncome cardsim.Stored[float64]
|
||||
PublishingIncome cardsim.Stored[float64]
|
||||
FinanceIncome cardsim.Stored[float64]
|
||||
GadgetryIncome cardsim.Stored[float64]
|
||||
FishingIncome cardsim.Stored[float64]
|
||||
ConstructionIncome cardsim.Stored[float64]
|
||||
MiningIncome float64 `cardsim:"stat" cardsim_name:"Mining Productivity"`
|
||||
ScavengingIncome float64 `cardsim:"stat" cardsim_name:"Scavenging Productivity"`
|
||||
AlchemyIncome float64 `cardsim:"stat" cardsim_name:"Alchemy Productivity"`
|
||||
HospitalityIncome float64 `cardsim:"stat" cardsim_name:"Hospitality Productivity"`
|
||||
AgricultureIncome float64 `cardsim:"stat" cardsim_name:"Agriculture Productivity"`
|
||||
ManufacturingIncome float64 `cardsim:"stat" cardsim_name:"Manufacturing Productivity"`
|
||||
PlanarIncome float64 `cardsim:"stat" cardsim_name:"Planar Productivity"`
|
||||
PublishingIncome float64 `cardsim:"stat" cardsim_name:"Publishing Productivity"`
|
||||
FinanceIncome float64 `cardsim:"stat" cardsim_name:"Finance Productivity"`
|
||||
GadgetryIncome float64 `cardsim:"stat" cardsim_name:"Gadgetry Productivity"`
|
||||
FishingIncome float64 `cardsim:"stat" cardsim_name:"Fishing Productivity"`
|
||||
ConstructionIncome float64 `cardsim:"stat" cardsim_name:"Construction Productivity"`
|
||||
|
||||
BureaucracyExpense cardsim.Stored[float64]
|
||||
WarExpense cardsim.Stored[float64]
|
||||
QoLExpense cardsim.Stored[float64]
|
||||
LogisticsExpense cardsim.Stored[float64]
|
||||
DragonSubsExpense cardsim.Stored[float64]
|
||||
ResearchSubsExpense cardsim.Stored[float64]
|
||||
EducationExpense cardsim.Stored[float64]
|
||||
HealthcareExpense cardsim.Stored[float64]
|
||||
ForeignRelExpense cardsim.Stored[float64]
|
||||
PoliceExpense cardsim.Stored[float64]
|
||||
EconPlanExpense cardsim.Stored[float64]
|
||||
ParksExpense cardsim.Stored[float64]
|
||||
FaithExpense cardsim.Stored[float64]
|
||||
BureaucracyExpense float64 `cardsim:"stat" cardsim_name:"Bureaucracy Investment"`
|
||||
WarExpense float64 `cardsim:"stat" cardsim_name:"War Investment"`
|
||||
QoLExpense float64 `cardsim:"stat" cardsim_name:"QoL Investment"`
|
||||
LogisticsExpense float64 `cardsim:"stat" cardsim_name:"Logistics Investment"`
|
||||
DragonSubsExpense float64 `cardsim:"stat" cardsim_name:"Dragon Subsidies Investment"`
|
||||
ResearchSubsExpense float64 `cardsim:"stat" cardsim_name:"Research Subsidies Investment"`
|
||||
EducationExpense float64 `cardsim:"stat" cardsim_name:"Education Investment"`
|
||||
HealthcareExpense float64 `cardsim:"stat" cardsim_name:"Healthcare Investment"`
|
||||
ForeignRelExpense float64 `cardsim:"stat" cardsim_name:"Foreign Relations Investment"`
|
||||
PoliceExpense float64 `cardsim:"stat" cardsim_name:"Law Enforcement Investment"`
|
||||
EconPlanExpense float64 `cardsim:"stat" cardsim_name:"Economic Planning Investment"`
|
||||
ParksExpense float64 `cardsim:"stat" cardsim_name:"Parks and Aesthetics Investment"`
|
||||
FaithExpense float64 `cardsim:"stat" cardsim_name:"Faith Investment"`
|
||||
|
||||
// AnotherExpense float64 `cardsim:"hiddenround5"`
|
||||
// A different way of adding stats that is slightly more empowering.
|
||||
}
|
||||
|
||||
func (k *KoboldMine) ProductivityFunc(s *cardsim.Stored[float64]) func() float64 {
|
||||
func (k *KoboldMine) ProductivityFunc(s *float64) func() float64 {
|
||||
return func() float64 {
|
||||
return s.Value * float64(k.Kobolds.Value)
|
||||
return *s * float64(k.Kobolds)
|
||||
}
|
||||
}
|
||||
|
||||
func (k *KoboldMine) TotalSectorIncome() float64 {
|
||||
return float64(k.Kobolds.Value) * (k.MiningIncome.Value + k.ScavengingIncome.Value + k.AlchemyIncome.Value + k.HospitalityIncome.Value + k.AgricultureIncome.Value + k.ManufacturingIncome.Value + k.PlanarIncome.Value + k.PublishingIncome.Value + k.FinanceIncome.Value + k.GadgetryIncome.Value + k.FishingIncome.Value + k.ConstructionIncome.Value)
|
||||
return float64(k.Kobolds) * (k.MiningIncome + k.ScavengingIncome + k.AlchemyIncome + k.HospitalityIncome + k.AgricultureIncome + k.ManufacturingIncome + k.PlanarIncome + k.PublishingIncome + k.FinanceIncome + k.GadgetryIncome + k.FishingIncome + k.ConstructionIncome)
|
||||
}
|
||||
|
||||
func (k *KoboldMine) TotalGovExpense() float64 {
|
||||
return float64(k.Kobolds.Value) * (k.BureaucracyExpense.Value + k.WarExpense.Value + k.QoLExpense.Value + k.LogisticsExpense.Value + k.DragonSubsExpense.Value + k.ResearchSubsExpense.Value + k.EducationExpense.Value + k.HealthcareExpense.Value + k.ForeignRelExpense.Value + k.PoliceExpense.Value + k.EconPlanExpense.Value + k.ParksExpense.Value + k.FaithExpense.Value)
|
||||
return float64(k.Kobolds) * (k.BureaucracyExpense + k.WarExpense + k.QoLExpense + k.LogisticsExpense + k.DragonSubsExpense + k.ResearchSubsExpense + k.EducationExpense + k.HealthcareExpense + k.ForeignRelExpense + k.PoliceExpense + k.EconPlanExpense + k.ParksExpense + k.FaithExpense)
|
||||
}
|
||||
|
||||
func (k *KoboldMine) Taxation() float64 {
|
||||
return (k.TotalGovExpense() / (k.TotalSectorIncome() + k.TotalGovExpense())) * 100
|
||||
}
|
||||
|
||||
func (k *KoboldMine) StatTaxRate() float64 {
|
||||
return k.Taxation()
|
||||
}
|
||||
|
||||
func (k *KoboldMine) Stats() []cardsim.Stat {
|
||||
@ -169,109 +180,31 @@ func (k *KoboldMine) Stats() []cardsim.Stat {
|
||||
|
||||
func NewKoboldMine() *KoboldMine {
|
||||
return &KoboldMine{
|
||||
Kobolds: cardsim.Stored[int64]{
|
||||
Name: "Kobolds",
|
||||
Value: 1000,
|
||||
},
|
||||
MiningIncome: cardsim.Stored[float64]{
|
||||
Name: "Mining Productivity",
|
||||
Value: 0.15,
|
||||
},
|
||||
ScavengingIncome: cardsim.Stored[float64]{
|
||||
Name: "Scavenging Productivity",
|
||||
Value: 0.1,
|
||||
},
|
||||
AlchemyIncome: cardsim.Stored[float64]{
|
||||
Name: "Alchemy Productivity",
|
||||
Value: 0.01,
|
||||
},
|
||||
HospitalityIncome: cardsim.Stored[float64]{
|
||||
Name: "Hospitality Productivity",
|
||||
Value: 0.0,
|
||||
},
|
||||
AgricultureIncome: cardsim.Stored[float64]{
|
||||
Name: "Agricultural Productivity",
|
||||
Value: 0.0,
|
||||
},
|
||||
ManufacturingIncome: cardsim.Stored[float64]{
|
||||
Name: "Manufacturing Productivity",
|
||||
Value: 0.10,
|
||||
},
|
||||
PlanarIncome: cardsim.Stored[float64]{
|
||||
Name: "Planar Harvesting Productivity",
|
||||
Value: 0.00,
|
||||
},
|
||||
PublishingIncome: cardsim.Stored[float64]{
|
||||
Name: "Book Publishing Productivity",
|
||||
Value: 0.02,
|
||||
},
|
||||
FinanceIncome: cardsim.Stored[float64]{
|
||||
Name: "Finance Productivity",
|
||||
Value: 0.02,
|
||||
},
|
||||
GadgetryIncome: cardsim.Stored[float64]{
|
||||
Name: "Gadgetry Productivity",
|
||||
Value: 0.03,
|
||||
},
|
||||
FishingIncome: cardsim.Stored[float64]{
|
||||
Name: "Fishing Productivity",
|
||||
Value: 0.0,
|
||||
},
|
||||
ConstructionIncome: cardsim.Stored[float64]{
|
||||
Name: "Construction Productivity",
|
||||
Value: 0.05,
|
||||
},
|
||||
BureaucracyExpense: cardsim.Stored[float64]{
|
||||
Name: "Bureaucracy Investment",
|
||||
Value: 0.05,
|
||||
},
|
||||
WarExpense: cardsim.Stored[float64]{
|
||||
Name: "War Investment",
|
||||
Value: 0.1,
|
||||
},
|
||||
QoLExpense: cardsim.Stored[float64]{
|
||||
Name: "QoL Investment",
|
||||
Value: 0.01,
|
||||
},
|
||||
LogisticsExpense: cardsim.Stored[float64]{
|
||||
Name: "Logistics Investment",
|
||||
Value: 0.02,
|
||||
},
|
||||
DragonSubsExpense: cardsim.Stored[float64]{
|
||||
Name: "Dragon Subsidies Investment",
|
||||
Value: 0.0,
|
||||
},
|
||||
ResearchSubsExpense: cardsim.Stored[float64]{
|
||||
Name: "Research Subsidies Investment",
|
||||
Value: 0.0,
|
||||
},
|
||||
EducationExpense: cardsim.Stored[float64]{
|
||||
Name: "Education Investment",
|
||||
Value: 0.01,
|
||||
},
|
||||
HealthcareExpense: cardsim.Stored[float64]{
|
||||
Name: "Healthcare Investment",
|
||||
Value: 0.01,
|
||||
},
|
||||
ForeignRelExpense: cardsim.Stored[float64]{
|
||||
Name: "Foreign Relations Investment",
|
||||
Value: 0.0,
|
||||
},
|
||||
PoliceExpense: cardsim.Stored[float64]{
|
||||
Name: "Law Enforcement Investment",
|
||||
Value: 0.03,
|
||||
},
|
||||
EconPlanExpense: cardsim.Stored[float64]{
|
||||
Name: "Economic Planning Investment",
|
||||
Value: 0.02,
|
||||
},
|
||||
ParksExpense: cardsim.Stored[float64]{
|
||||
Name: "Parks and Aesthetics Investment",
|
||||
Value: 0.0,
|
||||
},
|
||||
FaithExpense: cardsim.Stored[float64]{
|
||||
Name: "Faith Investment",
|
||||
Value: 0.03,
|
||||
},
|
||||
Kobolds: 1000,
|
||||
MiningIncome: 0.15,
|
||||
ScavengingIncome: 0.1,
|
||||
AlchemyIncome: 0.01,
|
||||
HospitalityIncome: 0.0,
|
||||
AgricultureIncome: 0.0,
|
||||
ManufacturingIncome: 0.10,
|
||||
PlanarIncome: 0.00,
|
||||
PublishingIncome: 0.02,
|
||||
FinanceIncome: 0.02,
|
||||
GadgetryIncome: 0.03,
|
||||
FishingIncome: 0.0,
|
||||
ConstructionIncome: 0.05,
|
||||
BureaucracyExpense: 0.05,
|
||||
WarExpense: 0.1,
|
||||
QoLExpense: 0.01,
|
||||
LogisticsExpense: 0.02,
|
||||
DragonSubsExpense: 0.0,
|
||||
ResearchSubsExpense: 0.0,
|
||||
EducationExpense: 0.01,
|
||||
HealthcareExpense: 0.01,
|
||||
ForeignRelExpense: 0.0,
|
||||
PoliceExpense: 0.03,
|
||||
EconPlanExpense: 0.02,
|
||||
ParksExpense: 0.0,
|
||||
FaithExpense: 0.03,
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user