Prepared partial move to TypeScript
This commit is contained in:
@@ -1,53 +0,0 @@
|
||||
/* eslint-disable max-classes-per-file */
|
||||
/** This describes all forms of settings used by Cookie Monster */
|
||||
|
||||
/** The basic setting class */
|
||||
export class Setting {
|
||||
constructor(type, group) {
|
||||
this.type = type;
|
||||
this.group = group;
|
||||
}
|
||||
}
|
||||
|
||||
/** The standard toggle setting class */
|
||||
export class SettingStandard extends Setting {
|
||||
constructor(type, group, label, desc, toggle, func = null) {
|
||||
super(type, group);
|
||||
this.label = label;
|
||||
this.desc = desc;
|
||||
this.toggle = toggle;
|
||||
if (func) {
|
||||
this.func = func;
|
||||
}
|
||||
}
|
||||
}
|
||||
/** The colour picker setting class */
|
||||
export class SettingColours extends Setting {
|
||||
constructor(type, group, desc) {
|
||||
super(type, group);
|
||||
this.desc = desc;
|
||||
}
|
||||
}
|
||||
|
||||
/** The volume level setting class */
|
||||
export class SettingVolume extends Setting {
|
||||
constructor(type, group, label, desc) {
|
||||
super(type, group);
|
||||
this.label = label;
|
||||
this.desc = desc;
|
||||
for (let i = 0; i < 101; i++) {
|
||||
this.label[i] = `${i}%`;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/** The number input setting class */
|
||||
export class SettingInputNumber extends Setting {
|
||||
constructor(type, group, label, desc, min, max) {
|
||||
super(type, group);
|
||||
this.label = label;
|
||||
this.desc = desc;
|
||||
this.min = min;
|
||||
this.max = max;
|
||||
}
|
||||
}
|
||||
11
src/Data/SettingClasses/BaseSetting.ts
Normal file
11
src/Data/SettingClasses/BaseSetting.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
/** The basic setting class */
|
||||
export default class Setting {
|
||||
type: string;
|
||||
|
||||
group: string;
|
||||
|
||||
constructor(type: string, group: string) {
|
||||
this.type = type;
|
||||
this.group = group;
|
||||
}
|
||||
}
|
||||
11
src/Data/SettingClasses/SettingColours.ts
Normal file
11
src/Data/SettingClasses/SettingColours.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import Setting from './BaseSetting';
|
||||
|
||||
/** The colour picker setting class */
|
||||
export default class SettingColours extends Setting {
|
||||
desc: string;
|
||||
|
||||
constructor(type: string, group: string, desc: string) {
|
||||
super(type, group);
|
||||
this.desc = desc;
|
||||
}
|
||||
}
|
||||
27
src/Data/SettingClasses/SettingInputNumber.ts
Normal file
27
src/Data/SettingClasses/SettingInputNumber.ts
Normal file
@@ -0,0 +1,27 @@
|
||||
import Setting from './BaseSetting';
|
||||
|
||||
/** The number input setting class */
|
||||
export default class SettingInputNumber extends Setting {
|
||||
label: string[];
|
||||
|
||||
desc: string;
|
||||
|
||||
min: number;
|
||||
|
||||
max: number;
|
||||
|
||||
constructor(
|
||||
type: string,
|
||||
group: string,
|
||||
label: string[],
|
||||
desc: string,
|
||||
min: number,
|
||||
max: number,
|
||||
) {
|
||||
super(type, group);
|
||||
this.label = label;
|
||||
this.desc = desc;
|
||||
this.min = min;
|
||||
this.max = max;
|
||||
}
|
||||
}
|
||||
29
src/Data/SettingClasses/SettingStandard.ts
Normal file
29
src/Data/SettingClasses/SettingStandard.ts
Normal file
@@ -0,0 +1,29 @@
|
||||
import Setting from './BaseSetting';
|
||||
|
||||
/** The standard toggle setting class */
|
||||
export default class SettingStandard extends Setting {
|
||||
label: string[];
|
||||
|
||||
desc: string;
|
||||
|
||||
toggle: boolean;
|
||||
|
||||
func: () => void;
|
||||
|
||||
constructor(
|
||||
type: string,
|
||||
group: string,
|
||||
label: string[],
|
||||
desc: string,
|
||||
toggle: boolean,
|
||||
func?: () => void,
|
||||
) {
|
||||
super(type, group);
|
||||
this.label = label;
|
||||
this.desc = desc;
|
||||
this.toggle = toggle;
|
||||
if (func !== undefined) {
|
||||
this.func = func;
|
||||
}
|
||||
}
|
||||
}
|
||||
17
src/Data/SettingClasses/SettingVolume.ts
Normal file
17
src/Data/SettingClasses/SettingVolume.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
import Setting from './BaseSetting';
|
||||
|
||||
/** The volume level setting class */
|
||||
export default class SettingVolume extends Setting {
|
||||
label: string[];
|
||||
|
||||
desc: string;
|
||||
|
||||
constructor(type: string, group: string, label: string[], desc: string) {
|
||||
super(type, group);
|
||||
this.label = label;
|
||||
this.desc = desc;
|
||||
for (let i = 0; i < 101; i++) {
|
||||
this.label[i] = `${i}%`;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -14,12 +14,10 @@ import UpdateUpgrades from '../Disp/BuildingsUpgrades/Upgrades';
|
||||
import RefreshScale from '../Disp/HelperFunctions/RefreshScale';
|
||||
import { UpdateFavicon } from '../Disp/TabTitle/FavIcon';
|
||||
import { SimDoSims } from '../Sim/VariablesAndData';
|
||||
import {
|
||||
SettingStandard,
|
||||
SettingColours,
|
||||
SettingVolume,
|
||||
SettingInputNumber,
|
||||
} from './SettingClasses';
|
||||
import SettingColours from './SettingClasses/SettingColours.ts';
|
||||
import SettingInputNumber from './SettingClasses/SettingInputNumber.ts';
|
||||
import SettingStandard from './SettingClasses/SettingStandard.ts';
|
||||
import SettingVolume from './SettingClasses/SettingVolume.ts';
|
||||
|
||||
/** This includes all options of CookieMonster and their relevant data */
|
||||
const Config = {
|
||||
@@ -529,7 +527,7 @@ const Config = {
|
||||
'Statistics',
|
||||
['Missing Achievements OFF', 'Missing Normal Achievements ON'],
|
||||
'Shows missing normal achievements in statistics menu.',
|
||||
false,
|
||||
true,
|
||||
),
|
||||
UpStats: new SettingStandard(
|
||||
'bool',
|
||||
|
||||
Reference in New Issue
Block a user