ekms 8.0.0-beta.3 → 8.0.0-beta.30
Sign up to get free protection for your applications and to get access to all the features.
- package/common/animals.instance.json +2542 -1375
- package/common/animals.js +2 -2
- package/common/avatar.js +2 -2
- package/common/characters.js +9 -11
- package/common/colors.instance.json +6646 -3529
- package/common/colors.js +2 -2
- package/common/colors.test.json +345 -780
- package/common/comparable.js +2 -15
- package/common/concept.js +17 -11
- package/common/countable.js +5 -5
- package/common/crew.instance.json +12534 -6597
- package/common/crew.js +4 -4
- package/common/crew.test.json +714 -452
- package/common/currency.js +7 -7
- package/common/dialogues.js +53 -138
- package/common/dimension.instance.json +246 -265
- package/common/dimension.js +12 -12
- package/common/dimension.test.json +446 -1640
- package/common/edible.instance.json +19308 -10008
- package/common/edible.js +2 -2
- package/common/emotions.instance.json +122 -129
- package/common/emotions.js +4 -4
- package/common/events.js +6 -6
- package/common/fastfood.instance.json +219409 -111252
- package/common/fastfood.js +24 -24
- package/common/formulas.instance.json +222 -256
- package/common/formulas.js +14 -14
- package/common/gdefaults.js +13 -13
- package/common/help.js +4 -4
- package/common/help.test.json +10 -22
- package/common/helpers/concept.js +9 -6
- package/common/helpers/dialogues.js +2 -3
- package/common/helpers/properties.js +48 -58
- package/common/hierarchy.js +12 -16
- package/common/javascript.js +8 -8
- package/common/kirk.instance.json +564 -290
- package/common/kirk.js +2 -2
- package/common/length.instance.json +5153 -4677
- package/common/length.js +2 -2
- package/common/math.instance.json +152 -1169
- package/common/math.js +11 -11
- package/common/meta.js +22 -29
- package/common/negation.instance.json +2 -0
- package/common/negation.js +38 -0
- package/common/negation.test.json +308 -0
- package/common/numbers.js +3 -3
- package/common/ordering.instance.json +292 -230
- package/common/ordering.js +5 -5
- package/common/people.instance.json +1902 -1015
- package/common/people.js +4 -5
- package/common/percentages.instance.json +2 -0
- package/common/percentages.js +57 -0
- package/common/percentages.test.json +751 -0
- package/common/pipboy.instance.json +7720 -6386
- package/common/pipboy.js +29 -32
- package/common/pokemon.instance.json +3954 -2081
- package/common/pokemon.js +4 -4
- package/common/pos.js +1 -1
- package/common/pressure.instance.json +1265 -1193
- package/common/pressure.js +2 -2
- package/common/properties.instance.json +106 -61
- package/common/properties.js +54 -125
- package/common/punctuation.js +2 -2
- package/common/reports.instance.json +557 -559
- package/common/reports.js +54 -74
- package/common/scorekeeper.js +13 -21
- package/common/sdefaults.js +13 -3
- package/common/sizeable.js +2 -2
- package/common/spock.instance.json +564 -290
- package/common/spock.js +2 -2
- package/common/stgame.js +13 -9
- package/common/stm.js +4 -4
- package/common/tell.js +10 -10
- package/common/temperature.instance.json +1297 -1209
- package/common/temperature.js +2 -2
- package/common/tester.js +2 -2
- package/common/testing.js +5 -5
- package/common/time.js +7 -7
- package/common/tokenize.js +1 -1
- package/common/ui.instance.json +238 -259
- package/common/ui.js +9 -9
- package/common/weight.instance.json +4905 -4166
- package/common/weight.js +2 -2
- package/common/yesno.js +1 -1
- package/main.js +51 -46
- package/package.json +13 -6
package/common/comparable.js
CHANGED
@@ -45,24 +45,11 @@ let configStruct = {
|
|
45
45
|
bridge: "{ ...next(operator) }"
|
46
46
|
},
|
47
47
|
],
|
48
|
-
|
49
|
-
/*
|
50
|
-
generators: [
|
51
|
-
{
|
52
|
-
where: where(),
|
53
|
-
match: ({context}) => false && context.quantity,
|
54
|
-
apply: ({context, g}) => {
|
55
|
-
const countable = g({ ...context, quantity: undefined, number: context.quanity == 1 ? 'one' : 'many' })
|
56
|
-
return `${g(context.quantity)} ${countable}`
|
57
|
-
}
|
58
|
-
},
|
59
|
-
]
|
60
|
-
*/
|
61
48
|
};
|
62
49
|
|
63
|
-
const createConfig = () => {
|
50
|
+
const createConfig = async () => {
|
64
51
|
const config = new Config(configStruct, module)
|
65
|
-
config.add(dialogues
|
52
|
+
await config.add(dialogues, numbers)
|
66
53
|
return config
|
67
54
|
}
|
68
55
|
|
package/common/concept.js
CHANGED
@@ -14,7 +14,7 @@ const concept_instance = require('./concept.instance.json')
|
|
14
14
|
plain and regular fries mean the same thing
|
15
15
|
*/
|
16
16
|
|
17
|
-
const createConfig = () => {
|
17
|
+
const createConfig = async () => {
|
18
18
|
const config = new Config({
|
19
19
|
name: 'concept',
|
20
20
|
operators: [
|
@@ -85,7 +85,7 @@ const createConfig = () => {
|
|
85
85
|
}
|
86
86
|
return true
|
87
87
|
},
|
88
|
-
apply: ({g, context}) => {
|
88
|
+
apply: async ({g, context}) => {
|
89
89
|
const modifiers = context.value.map( (p) => p[p.modifiers[0]] )
|
90
90
|
context.word = context.value[0].word
|
91
91
|
context.value = null
|
@@ -96,17 +96,21 @@ const createConfig = () => {
|
|
96
96
|
value: modifiers
|
97
97
|
}
|
98
98
|
context.paraphrase = true
|
99
|
-
return g(context)
|
99
|
+
return await g(context)
|
100
100
|
}
|
101
101
|
},
|
102
102
|
{
|
103
103
|
where: where(),
|
104
104
|
match: ({context}) => context.marker == 'modifies' && context.paraphrase,
|
105
|
-
apply: ({context, gp, gw}) => {
|
105
|
+
apply: async ({context, gp, gw}) => {
|
106
|
+
const modifiers = []
|
107
|
+
for (modifier of context.modifiers) {
|
108
|
+
modifiers.push(await gp(modifier))
|
109
|
+
}
|
106
110
|
if (context.literally) {
|
107
|
-
return `${
|
111
|
+
return `${modifiers.join(" ")} literally ${await gw(context, { number: context.modifiers[context.modifiers.length - 1] })} ${await gp(context.concept)}`
|
108
112
|
} else {
|
109
|
-
return `${
|
113
|
+
return `${modifiers.join(" ")} ${await gw(context, { number: context.modifiers[context.modifiers.length - 1] })} ${await gp(context.concept)}`
|
110
114
|
}
|
111
115
|
}
|
112
116
|
// const chosen = chooseNumber(context, word.singular, word.plural)
|
@@ -121,10 +125,12 @@ const createConfig = () => {
|
|
121
125
|
let modifiers
|
122
126
|
if (context.literally) {
|
123
127
|
literalModifiers = context.modifiers[0]
|
124
|
-
modifiers = literalModifiers.value.map(modifier => modifier.value)
|
128
|
+
// modifiers = literalModifiers.value.map(modifier => modifier.value)
|
129
|
+
modifiers = literalModifiers.value
|
125
130
|
modifiers = modifiers.slice(0, -1).concat([literalModifiers.marker]).concat(modifiers.slice(-1))
|
126
131
|
} else {
|
127
|
-
modifiers = context.modifiers
|
132
|
+
modifiers = context.modifiers
|
133
|
+
// modifiers = context.modifiers.map(modifier => modifier.value)
|
128
134
|
}
|
129
135
|
// km('concept').api.kindOfConcept({ config, modifiers, object: context.concept.value || context.concept.marker })
|
130
136
|
km('concept').api.kindOfConcept({ config, modifiers, object: context.concept })
|
@@ -133,9 +139,9 @@ const createConfig = () => {
|
|
133
139
|
],
|
134
140
|
}, module)
|
135
141
|
config.stop_auto_rebuild()
|
136
|
-
config.
|
137
|
-
config.add(dialogues
|
138
|
-
config.restart_auto_rebuild()
|
142
|
+
await config.setApi(new API())
|
143
|
+
await config.add(dialogues)
|
144
|
+
await config.restart_auto_rebuild()
|
139
145
|
return config
|
140
146
|
}
|
141
147
|
|
package/common/countable.js
CHANGED
@@ -63,21 +63,21 @@ let configStruct = {
|
|
63
63
|
{
|
64
64
|
where: where(),
|
65
65
|
match: ({context}) => false && context.quantity,
|
66
|
-
apply: ({context, g}) => {
|
66
|
+
apply: async ({context, g}) => {
|
67
67
|
let number = context.quantity.number || 'one'
|
68
68
|
if (context.quantity.value > 1) {
|
69
69
|
number = 'many'
|
70
70
|
}
|
71
|
-
const countable = g({ ...context, quantity: undefined, number})
|
72
|
-
return `${g(context.quantity)} ${countable}`
|
71
|
+
const countable = await g({ ...context, quantity: undefined, number})
|
72
|
+
return `${await g(context.quantity)} ${countable}`
|
73
73
|
}
|
74
74
|
},
|
75
75
|
]
|
76
76
|
};
|
77
77
|
|
78
|
-
const createConfig = () => {
|
78
|
+
const createConfig = async () => {
|
79
79
|
const config = new Config(configStruct, module)
|
80
|
-
config.add(dialogues
|
80
|
+
await config.add(dialogues, numbers)
|
81
81
|
return config
|
82
82
|
}
|
83
83
|
|