resource typings cleanup
This commit is contained in:
parent
30877e0bc0
commit
d0e58996a1
|
@ -45,7 +45,7 @@ class GameState {
|
||||||
for (const rkey of this._resourceKeys) {
|
for (const rkey of this._resourceKeys) {
|
||||||
const resource = this._resources[rkey];
|
const resource = this._resources[rkey];
|
||||||
if (resource?.isUnlocked(this) === true) {
|
if (resource?.isUnlocked(this) === true) {
|
||||||
if (resource.advanceAction !== null)
|
if (resource.advanceAction !== undefined)
|
||||||
resource.advanceAction(time, this);
|
resource.advanceAction(time, this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -55,12 +55,12 @@ class GameState {
|
||||||
const resource = this._resources[rkey];
|
const resource = this._resources[rkey];
|
||||||
if (resource === undefined || !resource.isUnlocked(this)) continue;
|
if (resource === undefined || !resource.isUnlocked(this)) continue;
|
||||||
|
|
||||||
if (resource.inc !== null && (resource.max === null
|
if (resource.inc !== undefined && (resource.max === undefined
|
||||||
|| resource.value < resource.max(this))) {
|
|| resource.value < resource.max(this))) {
|
||||||
resource.addValue(resource.inc(this) * time / 1000, this);
|
resource.addValue(resource.inc(this) * time / 1000, this);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (resource.max !== null && resource.value > resource.max(this)) {
|
if (resource.max !== undefined && resource.value > resource.max(this)) {
|
||||||
resource.addValue((resource.value - resource.max(this)) * -1, this);
|
resource.addValue((resource.value - resource.max(this)) * -1, this);
|
||||||
}
|
}
|
||||||
if (resource.value < 0) {
|
if (resource.value < 0) {
|
||||||
|
@ -73,7 +73,7 @@ class GameState {
|
||||||
const resource = this._resources[resourceKey];
|
const resource = this._resources[resourceKey];
|
||||||
if (resource === undefined || !resource.isUnlocked(this)) return;
|
if (resource === undefined || !resource.isUnlocked(this)) return;
|
||||||
|
|
||||||
if (resource.clickAction !== null) {
|
if (resource.clickAction !== undefined) {
|
||||||
resource.clickAction(this);
|
resource.clickAction(this);
|
||||||
for (const callback of this.onResourceClick) {
|
for (const callback of this.onResourceClick) {
|
||||||
callback();
|
callback();
|
||||||
|
@ -95,8 +95,8 @@ class GameState {
|
||||||
}
|
}
|
||||||
|
|
||||||
public isPurchasable (
|
public isPurchasable (
|
||||||
cost: { [key in ResourceKey]?: number } | null): boolean {
|
cost?: { [key in ResourceKey]?: number }): boolean {
|
||||||
if (cost === null) return true;
|
if (cost === undefined) return true;
|
||||||
for (const key in cost) {
|
for (const key in cost) {
|
||||||
const rkey = <ResourceKey>key;
|
const rkey = <ResourceKey>key;
|
||||||
if ((this._resources[rkey]?.value ?? 0) < (cost[rkey] ?? 0)) {
|
if ((this._resources[rkey]?.value ?? 0) < (cost[rkey] ?? 0)) {
|
||||||
|
@ -120,9 +120,11 @@ class GameState {
|
||||||
};
|
};
|
||||||
for (const key in this._resources) {
|
for (const key in this._resources) {
|
||||||
const rkey = <ResourceKey>key;
|
const rkey = <ResourceKey>key;
|
||||||
|
const resource = this._resources[rkey];
|
||||||
|
if (resource === undefined) continue;
|
||||||
saveObj[rkey] = {
|
saveObj[rkey] = {
|
||||||
value: this._resources[rkey]?.value ?? 0,
|
value: resource.value,
|
||||||
cost: this._resources[rkey]?.cost ?? null,
|
cost: resource.cost,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
const saveStr: string = btoa(JSON.stringify(saveObj));
|
const saveStr: string = btoa(JSON.stringify(saveObj));
|
||||||
|
@ -139,13 +141,13 @@ class GameState {
|
||||||
const rkey = <ResourceKey>key;
|
const rkey = <ResourceKey>key;
|
||||||
const saveRes = <{
|
const saveRes = <{
|
||||||
value: number;
|
value: number;
|
||||||
cost: { [key: string]: number } | null;
|
cost?: { [key: string]: number };
|
||||||
} | undefined> saveObj[key];
|
} | undefined> saveObj[key];
|
||||||
if (saveRes !== undefined) {
|
if (saveRes !== undefined) {
|
||||||
// @ts-expect-error writing read-only value from save data
|
// @ts-expect-error writing read-only value from save data
|
||||||
this._resources[rkey].value = saveRes.value;
|
this._resources[rkey].value = saveRes.value;
|
||||||
// @ts-expect-error writing read-only cost from save data
|
// @ts-expect-error writing read-only cost from save data
|
||||||
this._resources[rkey].cost = saveRes.cost ?? null;
|
this._resources[rkey].cost = saveRes.cost;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
@ -172,7 +174,7 @@ class GameState {
|
||||||
type SaveData = {
|
type SaveData = {
|
||||||
[key: string]: {
|
[key: string]: {
|
||||||
value: number;
|
value: number;
|
||||||
cost: { [key: string]: number } | null;
|
cost?: { [key: string]: number };
|
||||||
} | { maj: number, min: number } | undefined;
|
} | { maj: number, min: number } | undefined;
|
||||||
version?: { maj: number, min: number };
|
version?: { maj: number, min: number };
|
||||||
};
|
};
|
||||||
|
|
|
@ -9,7 +9,8 @@ class Church extends Infrastructure {
|
||||||
}
|
}
|
||||||
|
|
||||||
public max: (state: GameState) => number = (state) =>
|
public max: (state: GameState) => number = (state) =>
|
||||||
state.resource.compounds?.value ?? 0;
|
(state.resource.compounds?.value ?? 0)
|
||||||
|
* state.config.cfgCompoundChurchCapacity;
|
||||||
|
|
||||||
public isUnlocked (state: GameState): boolean {
|
public isUnlocked (state: GameState): boolean {
|
||||||
if (this._isUnlocked) return true;
|
if (this._isUnlocked) return true;
|
||||||
|
|
|
@ -34,18 +34,21 @@ interface IResource {
|
||||||
readonly name: string;
|
readonly name: string;
|
||||||
readonly description: string;
|
readonly description: string;
|
||||||
readonly valueInWholeNumbers: boolean;
|
readonly valueInWholeNumbers: boolean;
|
||||||
readonly clickText: string | null;
|
|
||||||
readonly clickDescription: string | null;
|
readonly value: number;
|
||||||
|
readonly cost?: { [key in ResourceKey]?: number };
|
||||||
|
|
||||||
|
readonly clickText?: string;
|
||||||
|
readonly clickDescription?: string;
|
||||||
// readonly altClickText?: string;
|
// readonly altClickText?: string;
|
||||||
// readonly altClickDescription?: string;
|
// readonly altClickDescription?: string;
|
||||||
readonly value: number;
|
|
||||||
readonly cost: { [key in ResourceKey]?: number } | null;
|
|
||||||
|
|
||||||
max: ((state: GameState) => number) | null;
|
max?: (state: GameState) => number;
|
||||||
inc: ((state: GameState) => number) | null;
|
inc?: (state: GameState) => number;
|
||||||
clickAction: ((state: GameState) => void) | null;
|
clickAction?: (state: GameState) => void;
|
||||||
// altClickAction (state: GameState): void;
|
// altClickAction (state: GameState): void;
|
||||||
|
advanceAction?: (time: number, state: GameState) => void;
|
||||||
|
|
||||||
addValue: (amount: number, state: GameState) => void;
|
addValue: (amount: number, state: GameState) => void;
|
||||||
isUnlocked: (state: GameState) => boolean;
|
isUnlocked: (state: GameState) => boolean;
|
||||||
advanceAction: ((time: number, state: GameState) => void) | null;
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,8 +8,8 @@ abstract class Job implements IResource {
|
||||||
public value = 0;
|
public value = 0;
|
||||||
public readonly cost: { [key in ResourceKey]?: number } = { };
|
public readonly cost: { [key in ResourceKey]?: number } = { };
|
||||||
|
|
||||||
public max: ((state: GameState) => number) | null = null;
|
public max?: (state: GameState) => number = undefined;
|
||||||
public inc: ((state: GameState) => number) | null = null;
|
public inc?: (state: GameState) => number = undefined;
|
||||||
|
|
||||||
protected _costMultiplier: { [key in ResourceKey]?: number } = { };
|
protected _costMultiplier: { [key in ResourceKey]?: number } = { };
|
||||||
protected _isUnlocked = false;
|
protected _isUnlocked = false;
|
||||||
|
@ -19,13 +19,12 @@ abstract class Job implements IResource {
|
||||||
public readonly description: string
|
public readonly description: string
|
||||||
) { }
|
) { }
|
||||||
|
|
||||||
|
|
||||||
public clickAction (state: GameState): void {
|
public clickAction (state: GameState): void {
|
||||||
if (this._availableJobs(state) <= 0) {
|
if (this._availableJobs(state) <= 0) {
|
||||||
state.log('You have no unemployed followers to promote.');
|
state.log('You have no unemployed followers to promote.');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (this.max !== null && this.value < this.max(state)
|
if (this.max !== undefined && this.value < this.max(state)
|
||||||
&& state.deductCost(this.cost)) {
|
&& state.deductCost(this.cost)) {
|
||||||
this.addValue(1);
|
this.addValue(1);
|
||||||
state.log(this._hireLog(1, state));
|
state.log(this._hireLog(1, state));
|
||||||
|
|
|
@ -29,6 +29,10 @@ class Money extends Purchasable {
|
||||||
inc += (state.resource.cryptoCurrency?.value ?? 0)
|
inc += (state.resource.cryptoCurrency?.value ?? 0)
|
||||||
* state.config.cfgCryptoReturnAmount;
|
* state.config.cfgCryptoReturnAmount;
|
||||||
|
|
||||||
|
// salaries
|
||||||
|
inc -= (state.resource.pastors?.value ?? 0)
|
||||||
|
* state.config.cfgPastorSalary;
|
||||||
|
|
||||||
return inc;
|
return inc;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -3,17 +3,9 @@
|
||||||
abstract class Passive implements IResource {
|
abstract class Passive implements IResource {
|
||||||
public readonly resourceType = ResourceType.passive;
|
public readonly resourceType = ResourceType.passive;
|
||||||
public readonly valueInWholeNumbers = false;
|
public readonly valueInWholeNumbers = false;
|
||||||
public readonly clickText = null;
|
|
||||||
public readonly clickDescription = null;
|
|
||||||
public value = 0;
|
public value = 0;
|
||||||
public readonly cost = null;
|
|
||||||
|
|
||||||
public readonly clickAction = null;
|
public advanceAction?: (time: number, state: GameState) => void = undefined;
|
||||||
|
|
||||||
public max: ((state: GameState) => number) | null = null;
|
|
||||||
public inc: ((state: GameState) => number) | null = null;
|
|
||||||
public advanceAction: (
|
|
||||||
(time: number, state: GameState) => void) | null = null;
|
|
||||||
|
|
||||||
constructor (
|
constructor (
|
||||||
public readonly name: string,
|
public readonly name: string,
|
||||||
|
|
|
@ -8,6 +8,7 @@ class Pastor extends Job {
|
||||||
'Collect tithings for you and recruit new members from other faiths automatically.');
|
'Collect tithings for you and recruit new members from other faiths automatically.');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public max: (state: GameState) => number = (state) => {
|
public max: (state: GameState) => number = (state) => {
|
||||||
let max = (state.resource.churches?.value ?? 0)
|
let max = (state.resource.churches?.value ?? 0)
|
||||||
* state.config.cfgChurchPastorCapacity;
|
* state.config.cfgChurchPastorCapacity;
|
||||||
|
@ -32,9 +33,9 @@ class Pastor extends Job {
|
||||||
if (Math.floor(plorg?.value ?? 0) < tithed)
|
if (Math.floor(plorg?.value ?? 0) < tithed)
|
||||||
tithed = Math.floor(plorg?.value ?? 0);
|
tithed = Math.floor(plorg?.value ?? 0);
|
||||||
let collected = tithed * state.config.cfgTitheAmount;
|
let collected = tithed * state.config.cfgTitheAmount;
|
||||||
if (money?.max !== null
|
if (money?.max !== undefined
|
||||||
&& collected > (money?.max(state) ?? 0) - (money?.value ?? 0))
|
&& collected > money.max(state) - money.value)
|
||||||
collected = (money?.max(state) ?? 0) - (money?.value ?? 0);
|
collected = money.max(state) - money.value;
|
||||||
if (collected > 0) {
|
if (collected > 0) {
|
||||||
money?.addValue(collected, state);
|
money?.addValue(collected, state);
|
||||||
state.log(`Your pastors collected $${state.config.formatNumber(collected)} in tithings from ${state.config.formatNumber(tithed)} followers.`);
|
state.log(`Your pastors collected $${state.config.formatNumber(collected)} in tithings from ${state.config.formatNumber(tithed)} followers.`);
|
||||||
|
|
|
@ -8,7 +8,6 @@ class PlayerOrg implements IResource {
|
||||||
public readonly clickText = 'Recruit';
|
public readonly clickText = 'Recruit';
|
||||||
public readonly clickDescription = 'Gather new followers.';
|
public readonly clickDescription = 'Gather new followers.';
|
||||||
public value = 0;
|
public value = 0;
|
||||||
public readonly cost = null;
|
|
||||||
|
|
||||||
private _timeSinceLastLost = 0;
|
private _timeSinceLastLost = 0;
|
||||||
private _lastRecruitmentLog = 0;
|
private _lastRecruitmentLog = 0;
|
||||||
|
@ -33,8 +32,7 @@ class PlayerOrg implements IResource {
|
||||||
|
|
||||||
// credibility adjustment
|
// credibility adjustment
|
||||||
const creds = state.resource.credibility;
|
const creds = state.resource.credibility;
|
||||||
if (creds?.max !== null) inc *=
|
if (creds?.max !== undefined) inc *= creds.value / creds.max(state);
|
||||||
(creds?.value ?? 0) / (creds?.max(state) ?? state.config.cfgPassiveMax);
|
|
||||||
|
|
||||||
return inc;
|
return inc;
|
||||||
}
|
}
|
||||||
|
@ -48,9 +46,8 @@ class PlayerOrg implements IResource {
|
||||||
|
|
||||||
// chance to fail increases as credibility decreases
|
// chance to fail increases as credibility decreases
|
||||||
const creds = state.resource.credibility;
|
const creds = state.resource.credibility;
|
||||||
if (creds?.max !== null) {
|
if (creds?.max !== undefined) {
|
||||||
const ratio = Math.ceil(creds?.value ?? 0) / (creds?.max(state)
|
const ratio = Math.ceil(creds.value) / creds.max(state);
|
||||||
?? state.config.cfgPassiveMax);
|
|
||||||
if (Math.random() > ratio) {
|
if (Math.random() > ratio) {
|
||||||
state.log('Your recruitment efforts failed.');
|
state.log('Your recruitment efforts failed.');
|
||||||
return;
|
return;
|
||||||
|
@ -99,10 +96,9 @@ class PlayerOrg implements IResource {
|
||||||
if (this._timeSinceLastLost > state.config.cfgCredibilityFollowerLossTime) {
|
if (this._timeSinceLastLost > state.config.cfgCredibilityFollowerLossTime) {
|
||||||
if (this.value > 0) {
|
if (this.value > 0) {
|
||||||
const creds = state.resource.credibility;
|
const creds = state.resource.credibility;
|
||||||
if (creds?.max !== null) {
|
if (creds?.max !== undefined) {
|
||||||
const ratio =
|
const ratio =
|
||||||
Math.ceil(creds?.value ?? 0) / (creds?.max(state)
|
Math.ceil(creds.value) / creds.max(state);
|
||||||
?? state.config.cfgPassiveMax);
|
|
||||||
if (Math.random() > ratio) {
|
if (Math.random() > ratio) {
|
||||||
const lost = Math.ceil(this.value
|
const lost = Math.ceil(this.value
|
||||||
* state.config.cfgCredibilityFollowerLossRatio
|
* state.config.cfgCredibilityFollowerLossRatio
|
||||||
|
|
|
@ -8,8 +8,8 @@ abstract class Purchasable implements IResource {
|
||||||
public value = 0;
|
public value = 0;
|
||||||
public readonly cost: { [key in ResourceKey]?: number } = { };
|
public readonly cost: { [key in ResourceKey]?: number } = { };
|
||||||
|
|
||||||
public inc: ((state: GameState) => number) | null = null;
|
public inc?: (state: GameState) => number = undefined;
|
||||||
public max: ((_state: GameState) => number) | null = null;
|
public max?: (_state: GameState) => number = undefined;
|
||||||
|
|
||||||
protected _costMultiplier: { [key in ResourceKey]?: number } = { };
|
protected _costMultiplier: { [key in ResourceKey]?: number } = { };
|
||||||
protected _isUnlocked = false;
|
protected _isUnlocked = false;
|
||||||
|
@ -21,7 +21,7 @@ abstract class Purchasable implements IResource {
|
||||||
|
|
||||||
|
|
||||||
public clickAction (state: GameState): void {
|
public clickAction (state: GameState): void {
|
||||||
if (this.max !== null && this.value >= this.max(state)) return;
|
if (this.max !== undefined && this.value >= this.max(state)) return;
|
||||||
if (state.deductCost(this.cost)) {
|
if (state.deductCost(this.cost)) {
|
||||||
const amount = this._purchaseAmount(state);
|
const amount = this._purchaseAmount(state);
|
||||||
if (amount > 0) {
|
if (amount > 0) {
|
||||||
|
|
|
@ -3,14 +3,6 @@
|
||||||
class Religion implements IResource {
|
class Religion implements IResource {
|
||||||
public readonly resourceType = ResourceType.religion;
|
public readonly resourceType = ResourceType.religion;
|
||||||
public readonly valueInWholeNumbers = true;
|
public readonly valueInWholeNumbers = true;
|
||||||
public readonly clickText = null;
|
|
||||||
public readonly clickDescription = null;
|
|
||||||
public readonly cost = null;
|
|
||||||
|
|
||||||
public readonly max = null;
|
|
||||||
public readonly inc = null;
|
|
||||||
public readonly clickAction = null;
|
|
||||||
public readonly advanceAction = null;
|
|
||||||
|
|
||||||
constructor (
|
constructor (
|
||||||
public readonly name: string,
|
public readonly name: string,
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
abstract class Research extends Purchasable {
|
abstract class Research extends Purchasable {
|
||||||
public readonly resourceType = ResourceType.research;
|
public readonly resourceType = ResourceType.research;
|
||||||
|
public inc = undefined;
|
||||||
|
|
||||||
constructor (
|
constructor (
|
||||||
public readonly name: string,
|
public readonly name: string,
|
||||||
|
|
|
@ -58,19 +58,20 @@ class DebugRenderer implements IRenderer {
|
||||||
<span class='resource-max'></span>
|
<span class='resource-max'></span>
|
||||||
<span class='resource-inc'></span>
|
<span class='resource-inc'></span>
|
||||||
`;
|
`;
|
||||||
if (resource.clickText !== null && resource.clickDescription !== null) {
|
if (resource.clickText !== undefined
|
||||||
|
&& resource.clickDescription !== undefined) {
|
||||||
content += `<br>
|
content += `<br>
|
||||||
<button class='resource-btn'
|
<button class='resource-btn'
|
||||||
title='${this._escape(resource.clickDescription)}'>
|
title='${this._escape(resource.clickDescription)}'>
|
||||||
${this._escape(resource.clickText)}</button>`;
|
${this._escape(resource.clickText)}</button>`;
|
||||||
}
|
}
|
||||||
if (resource.cost !== null
|
if (resource.cost !== undefined
|
||||||
&& Object.keys(resource.cost).length !== 0) {
|
&& Object.keys(resource.cost).length !== 0) {
|
||||||
content += "<br>Cost: <span class='resource-cost'></span>";
|
content += "<br>Cost: <span class='resource-cost'></span>";
|
||||||
}
|
}
|
||||||
el.innerHTML = content;
|
el.innerHTML = content;
|
||||||
resContainer.appendChild(el);
|
resContainer.appendChild(el);
|
||||||
if (resource.clickAction !== null) {
|
if (resource.clickAction !== undefined) {
|
||||||
const btn = el.getElementsByClassName('resource-btn')[0];
|
const btn = el.getElementsByClassName('resource-btn')[0];
|
||||||
btn.addEventListener('click', (): void => {
|
btn.addEventListener('click', (): void => {
|
||||||
state.performClick(rkey);
|
state.performClick(rkey);
|
||||||
|
@ -103,17 +104,18 @@ class DebugRenderer implements IRenderer {
|
||||||
? Math.floor(resource.value)
|
? Math.floor(resource.value)
|
||||||
: resource.value;
|
: resource.value;
|
||||||
elV.innerHTML = state.config.formatNumber(value);
|
elV.innerHTML = state.config.formatNumber(value);
|
||||||
elT.innerHTML = resource.max !== null
|
elT.innerHTML = resource.max !== undefined
|
||||||
? ` / ${state.config.formatNumber(resource.max(state))}`
|
? ` / ${state.config.formatNumber(resource.max(state))}`
|
||||||
: '';
|
: '';
|
||||||
const elB = el.getElementsByClassName('resource-btn');
|
const elB = el.getElementsByClassName('resource-btn');
|
||||||
if (elB.length > 0) {
|
if (elB.length > 0) {
|
||||||
const enabled = state.isPurchasable(resource.cost)
|
const enabled = state.isPurchasable(resource.cost)
|
||||||
&& (resource.max === null || resource.value < resource.max(state));
|
&& (resource.max === undefined
|
||||||
|
|| resource.value < resource.max(state));
|
||||||
if (enabled) elB[0].removeAttribute('disabled');
|
if (enabled) elB[0].removeAttribute('disabled');
|
||||||
else elB[0].setAttribute('disabled', 'disabled');
|
else elB[0].setAttribute('disabled', 'disabled');
|
||||||
}
|
}
|
||||||
if (resource.inc !== null && resource.inc(state) > 0) {
|
if (resource.inc !== undefined && resource.inc(state) > 0) {
|
||||||
const elI = el.getElementsByClassName('resource-inc')[0];
|
const elI = el.getElementsByClassName('resource-inc')[0];
|
||||||
elI.innerHTML =
|
elI.innerHTML =
|
||||||
` +${state.config.formatNumber(resource.inc(state))}/s`;
|
` +${state.config.formatNumber(resource.inc(state))}/s`;
|
||||||
|
|
Reference in New Issue