tpmkms_4wp 8.0.0-beta.7 → 8.0.0-beta.70
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/common/animals.instance.json +2871 -1379
- package/common/animals.js +17 -20
- package/common/articles.js +103 -0
- package/common/articles.test.json +310 -0
- package/common/avatar.js +5 -9
- package/common/characters.js +22 -28
- package/common/colors.instance.json +7170 -3657
- package/common/colors.js +4 -8
- package/common/colors.test.json +345 -780
- package/common/comparable.instance.json +1750 -0
- package/common/comparable.js +36 -28
- package/common/comparable.test.json +438 -2
- package/common/concept.js +120 -118
- package/common/countable.js +19 -13
- package/common/countable.test.json +1050 -0
- package/common/crew.instance.json +13066 -6469
- package/common/crew.js +36 -41
- package/common/crew.test.json +714 -452
- package/common/currency.js +27 -45
- package/common/dialogues.js +161 -285
- package/common/dimension.instance.json +474 -253
- package/common/dimension.js +16 -22
- package/common/dimension.test.json +446 -1640
- package/common/edible.instance.json +20053 -10093
- package/common/edible.js +3 -8
- package/common/emotions.instance.json +147 -69
- package/common/emotions.js +35 -38
- package/common/evaluate.instance.json +2 -0
- package/common/evaluate.js +49 -0
- package/common/evaluate.test.json +574 -0
- package/common/events.js +10 -14
- package/common/fastfood.instance.json +221166 -111223
- package/common/fastfood.js +75 -85
- package/common/fastfood.test.json +268 -90
- package/common/formulas.instance.json +455 -249
- package/common/formulas.js +19 -26
- package/common/gdefaults.js +24 -26
- package/common/help.js +7 -12
- package/common/help.test.json +63 -8
- package/common/helpers/concept.js +10 -7
- package/common/helpers/dialogues.js +2 -3
- package/common/helpers/properties.js +54 -62
- package/common/helpers.js +6 -5
- package/common/hierarchy.js +16 -24
- package/common/javascript.js +11 -18
- package/common/kirk.instance.json +584 -290
- package/common/kirk.js +5 -8
- package/common/length.instance.json +8834 -4757
- package/common/length.js +4 -8
- package/common/listener.js +48 -0
- package/common/listener.test.json +104 -0
- package/common/math.instance.json +425 -1187
- package/common/math.js +16 -20
- package/common/meta.js +23 -47
- package/common/nameable.instance.json +2 -0
- package/common/nameable.js +144 -0
- package/common/nameable.test.json +3191 -0
- package/common/negation.instance.json +2 -0
- package/common/negation.js +38 -0
- package/common/negation.test.json +308 -0
- package/common/numbers.js +27 -31
- package/common/ordering.instance.json +366 -246
- package/common/ordering.js +80 -86
- package/common/people.instance.json +2074 -1022
- package/common/people.js +8 -13
- package/common/percentages.instance.json +2 -0
- package/common/percentages.js +53 -0
- package/common/percentages.test.json +751 -0
- package/common/pipboy.instance.json +11745 -6329
- package/common/pipboy.js +48 -59
- package/common/pokemon.instance.json +4226 -2081
- package/common/pokemon.js +7 -20
- package/common/pos.js +15 -13
- package/common/pressure.instance.json +2208 -1175
- package/common/pressure.js +4 -8
- package/common/properties.instance.json +131 -61
- package/common/properties.js +57 -134
- package/common/punctuation.js +15 -7
- package/common/reports.instance.json +1018 -530
- package/common/reports.js +77 -100
- package/common/reports.test.json +15623 -10458
- package/common/scorekeeper.js +18 -30
- package/common/sdefaults.js +16 -7
- package/common/sizeable.js +6 -10
- package/common/spock.instance.json +584 -290
- package/common/spock.js +5 -8
- package/common/stgame.js +19 -19
- package/common/stm.js +164 -27
- package/common/stm.test.json +1734 -1
- package/common/tell.js +14 -18
- package/common/temperature.instance.json +2271 -1222
- package/common/temperature.js +4 -8
- package/common/tester.js +15 -4
- package/common/testing.js +8 -12
- package/common/time.js +20 -25
- package/common/tokenize.js +5 -6
- package/common/ui.instance.json +459 -240
- package/common/ui.js +16 -22
- package/common/weight.instance.json +7646 -4026
- package/common/weight.js +4 -8
- package/common/yesno.js +5 -5
- package/main.js +14 -2
- package/package.json +28 -5
package/common/dimension.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
const {
|
1
|
+
const { knowledgeModule, where, Digraph } = require('./runtime').theprogrammablemind
|
2
2
|
const { defaultContextCheck } = require('./helpers')
|
3
3
|
const hierarchy = require('./hierarchy.js')
|
4
4
|
const formulas = require('./formulas.js')
|
@@ -36,7 +36,7 @@ class API {
|
|
36
36
|
config.addBridge({
|
37
37
|
id: dimension,
|
38
38
|
isA: ['dimension'],
|
39
|
-
generatorp: ({context, g}) => context.amount ? `${g(context.amount)} ${g(context.unit)}` : context.word,
|
39
|
+
generatorp: async ({context, g}) => context.amount ? `${await g(context.amount)} ${await g(context.unit)}` : context.word,
|
40
40
|
})
|
41
41
|
|
42
42
|
// for example, celcius and fahrenheit
|
@@ -52,7 +52,7 @@ class API {
|
|
52
52
|
|
53
53
|
const api = new API()
|
54
54
|
|
55
|
-
let
|
55
|
+
let config = {
|
56
56
|
name: 'dimension',
|
57
57
|
operators: [
|
58
58
|
"([dimension])",
|
@@ -76,7 +76,7 @@ let configStruct = {
|
|
76
76
|
{
|
77
77
|
where: where(),
|
78
78
|
match: ({context}) => context.marker == 'noconversion',
|
79
|
-
apply: ({context, gp}) => `there is no conversion between ${gp(context.from)} and ${gp(context.to)}`,
|
79
|
+
apply: async ({context, gp}) => `there is no conversion between ${await gp(context.from)} and ${await gp(context.to)}`,
|
80
80
|
},
|
81
81
|
],
|
82
82
|
bridges: [
|
@@ -86,7 +86,7 @@ let configStruct = {
|
|
86
86
|
isA: [],
|
87
87
|
generatorpr: {
|
88
88
|
match: ({context}) => context.amount,
|
89
|
-
apply: ({context,
|
89
|
+
apply: async ({context, gp, gr}) => `${await gr(context.amount)} ${await gp(context.unit)}`,
|
90
90
|
},
|
91
91
|
},
|
92
92
|
{ id: "length", isA: ['dimension'], development: true },
|
@@ -105,7 +105,7 @@ let configStruct = {
|
|
105
105
|
id: "degree",
|
106
106
|
words: [{ word: 'degrees', number: 'many' }],
|
107
107
|
isA: ['amount'],
|
108
|
-
generatorp: ({context, g}) => (context.amount) ? `${g(context.amount)} ${context.word}` : context.word,
|
108
|
+
generatorp: async ({context, g}) => (context.amount) ? `${await g(context.amount)} ${context.word}` : context.word,
|
109
109
|
bridge: "{ ...next(operator), value: before[0].value, amount: before[0] }",
|
110
110
|
},
|
111
111
|
{
|
@@ -119,9 +119,9 @@ let configStruct = {
|
|
119
119
|
bridge: "{ ...next(operator), from: before[0], to: after[0] }",
|
120
120
|
isA: ['expression', 'queryable'],
|
121
121
|
after: [['possession', 0], ['possession', 1]],
|
122
|
-
generatorp: ({context, g}) => `${g(context.from)} ${context.word} ${g(context.to)}`,
|
122
|
+
generatorp: async ({context, g}) => `${await g(context.from)} ${context.word} ${await g(context.to)}`,
|
123
123
|
// evaluator: ({context, kms, error}) => {
|
124
|
-
evaluator: ({context, kms, e, error}) => {
|
124
|
+
evaluator: async ({context, kms, e, error}) => {
|
125
125
|
/*
|
126
126
|
error(({context, e}) => {
|
127
127
|
context.evalue = 'dont know...'
|
@@ -132,7 +132,7 @@ let configStruct = {
|
|
132
132
|
let evalue;
|
133
133
|
let efrom = from
|
134
134
|
if (!from.unit) {
|
135
|
-
efrom = e(from).evalue
|
135
|
+
efrom = (await e(from)).evalue
|
136
136
|
}
|
137
137
|
if (to.value == efrom.unit.value) {
|
138
138
|
evalue = efrom.amount
|
@@ -140,11 +140,11 @@ let configStruct = {
|
|
140
140
|
const formula = kms.formulas.api.get(to, [efrom.unit])
|
141
141
|
if (!formula) {
|
142
142
|
const reason = { marker: 'reason', focusableForPhrase: true, evalue: { marker: 'noconversion', from: efrom.unit, to } }
|
143
|
-
kms.stm.api.mentioned(reason)
|
143
|
+
kms.stm.api.mentioned({ context: reason })
|
144
144
|
error(reason)
|
145
145
|
}
|
146
146
|
kms.stm.api.setVariable(efrom.unit.value, efrom.amount)
|
147
|
-
evalue = e(formula)
|
147
|
+
evalue = await e(formula)
|
148
148
|
}
|
149
149
|
/*
|
150
150
|
'{
|
@@ -170,23 +170,17 @@ let configStruct = {
|
|
170
170
|
const template = {
|
171
171
|
configs: [
|
172
172
|
"dimension and unit are concepts",
|
173
|
-
|
173
|
+
config,
|
174
174
|
],
|
175
175
|
}
|
176
176
|
|
177
|
-
const createConfig = () => {
|
178
|
-
const config = new Config({ name: 'dimension' }, module)
|
179
|
-
config.stop_auto_rebuild()
|
180
|
-
config.add(hierarchy(), formulas(), testing())
|
181
|
-
config.api = api
|
182
|
-
config.restart_auto_rebuild()
|
183
|
-
return config
|
184
|
-
}
|
185
|
-
|
186
177
|
knowledgeModule({
|
178
|
+
config: { name: 'dimension' },
|
179
|
+
includes: [hierarchy, formulas, testing],
|
180
|
+
api: () => new API(),
|
181
|
+
|
187
182
|
module,
|
188
183
|
description: 'Used to define numeric temperature such as currency, temperature or weight',
|
189
|
-
createConfig,
|
190
184
|
template: { template, instance },
|
191
185
|
test: {
|
192
186
|
name: './dimension.test.json',
|