tpmkms 8.0.0-beta.3 → 8.0.0-beta.30

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.
Files changed (86) hide show
  1. package/common/animals.instance.json +2542 -1375
  2. package/common/animals.js +2 -2
  3. package/common/avatar.js +2 -2
  4. package/common/characters.js +9 -11
  5. package/common/colors.instance.json +6646 -3529
  6. package/common/colors.js +2 -2
  7. package/common/colors.test.json +345 -780
  8. package/common/comparable.js +2 -15
  9. package/common/concept.js +17 -11
  10. package/common/countable.js +5 -5
  11. package/common/crew.instance.json +12534 -6597
  12. package/common/crew.js +4 -4
  13. package/common/crew.test.json +714 -452
  14. package/common/currency.js +7 -7
  15. package/common/dialogues.js +53 -138
  16. package/common/dimension.instance.json +246 -265
  17. package/common/dimension.js +12 -12
  18. package/common/dimension.test.json +446 -1640
  19. package/common/edible.instance.json +19308 -10008
  20. package/common/edible.js +2 -2
  21. package/common/emotions.instance.json +122 -129
  22. package/common/emotions.js +4 -4
  23. package/common/events.js +6 -6
  24. package/common/fastfood.instance.json +219409 -111252
  25. package/common/fastfood.js +24 -24
  26. package/common/formulas.instance.json +222 -256
  27. package/common/formulas.js +14 -14
  28. package/common/gdefaults.js +13 -13
  29. package/common/help.js +4 -4
  30. package/common/help.test.json +10 -22
  31. package/common/helpers/concept.js +9 -6
  32. package/common/helpers/dialogues.js +2 -3
  33. package/common/helpers/properties.js +48 -58
  34. package/common/hierarchy.js +12 -16
  35. package/common/javascript.js +8 -8
  36. package/common/kirk.instance.json +564 -290
  37. package/common/kirk.js +2 -2
  38. package/common/length.instance.json +5153 -4677
  39. package/common/length.js +2 -2
  40. package/common/math.instance.json +152 -1169
  41. package/common/math.js +11 -11
  42. package/common/meta.js +22 -29
  43. package/common/negation.instance.json +2 -0
  44. package/common/negation.js +38 -0
  45. package/common/negation.test.json +308 -0
  46. package/common/numbers.js +3 -3
  47. package/common/ordering.instance.json +292 -230
  48. package/common/ordering.js +5 -5
  49. package/common/people.instance.json +1902 -1015
  50. package/common/people.js +4 -5
  51. package/common/percentages.instance.json +2 -0
  52. package/common/percentages.js +57 -0
  53. package/common/percentages.test.json +751 -0
  54. package/common/pipboy.instance.json +7720 -6386
  55. package/common/pipboy.js +29 -32
  56. package/common/pokemon.instance.json +3954 -2081
  57. package/common/pokemon.js +4 -4
  58. package/common/pos.js +1 -1
  59. package/common/pressure.instance.json +1265 -1193
  60. package/common/pressure.js +2 -2
  61. package/common/properties.instance.json +106 -61
  62. package/common/properties.js +54 -125
  63. package/common/punctuation.js +2 -2
  64. package/common/reports.instance.json +557 -559
  65. package/common/reports.js +54 -74
  66. package/common/scorekeeper.js +13 -21
  67. package/common/sdefaults.js +13 -3
  68. package/common/sizeable.js +2 -2
  69. package/common/spock.instance.json +564 -290
  70. package/common/spock.js +2 -2
  71. package/common/stgame.js +13 -9
  72. package/common/stm.js +4 -4
  73. package/common/tell.js +10 -10
  74. package/common/temperature.instance.json +1297 -1209
  75. package/common/temperature.js +2 -2
  76. package/common/tester.js +2 -2
  77. package/common/testing.js +5 -5
  78. package/common/time.js +7 -7
  79. package/common/tokenize.js +1 -1
  80. package/common/ui.instance.json +238 -259
  81. package/common/ui.js +9 -9
  82. package/common/weight.instance.json +4905 -4166
  83. package/common/weight.js +2 -2
  84. package/common/yesno.js +1 -1
  85. package/main.js +51 -46
  86. package/package.json +13 -6
@@ -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(), numbers())
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 `${context.modifiers.map(gp).join(" ")} literally ${gw(context, { number: context.modifiers[context.modifiers.length - 1] })} ${gp(context.concept)}`
111
+ return `${modifiers.join(" ")} literally ${await gw(context, { number: context.modifiers[context.modifiers.length - 1] })} ${await gp(context.concept)}`
108
112
  } else {
109
- return `${context.modifiers.map(gp).join(" ")} ${gw(context, { number: context.modifiers[context.modifiers.length - 1] })} ${gp(context.concept)}`
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.map(modifier => modifier.value)
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.api = new API()
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
 
@@ -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(), numbers())
80
+ await config.add(dialogues, numbers)
81
81
  return config
82
82
  }
83
83