warscript 0.0.1-dev.ee2345e → 0.0.1-dev.effa673

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 (197) hide show
  1. package/attributes.d.ts +0 -1
  2. package/binaryreader.d.ts +1 -0
  3. package/binaryreader.lua +3 -0
  4. package/config.d.ts +5 -0
  5. package/config.lua +10 -0
  6. package/core/types/effect.d.ts +14 -6
  7. package/core/types/effect.lua +131 -35
  8. package/core/types/frame.d.ts +8 -1
  9. package/core/types/frame.lua +93 -1
  10. package/core/types/group.d.ts +0 -1
  11. package/core/types/image.d.ts +0 -1
  12. package/core/types/missile.d.ts +2 -2
  13. package/core/types/missile.lua +8 -2
  14. package/core/types/sound.d.ts +17 -24
  15. package/core/types/sound.lua +94 -24
  16. package/core/types/unit.lua +8 -0
  17. package/core/util.d.ts +1 -1
  18. package/core/util.lua +18 -1
  19. package/decl/index.d.ts +1 -0
  20. package/engine/ability.d.ts +1 -1
  21. package/engine/behavior.d.ts +10 -10
  22. package/engine/behavior.lua +6 -6
  23. package/engine/behaviour/ability/always-enabled.d.ts +7 -0
  24. package/engine/behaviour/ability/always-enabled.lua +31 -0
  25. package/engine/behaviour/ability/apply-buff.d.ts +8 -5
  26. package/engine/behaviour/ability/apply-buff.lua +32 -0
  27. package/engine/behaviour/ability/apply-unit-behavior.d.ts +6 -1
  28. package/engine/behaviour/ability/apply-unit-behavior.lua +1 -0
  29. package/engine/behaviour/ability/damage.d.ts +36 -11
  30. package/engine/behaviour/ability/damage.lua +90 -32
  31. package/engine/behaviour/ability/emulate-impact.d.ts +6 -0
  32. package/engine/behaviour/ability/emulate-impact.lua +28 -0
  33. package/engine/behaviour/ability/heal.d.ts +33 -6
  34. package/engine/behaviour/ability/heal.lua +89 -10
  35. package/engine/behaviour/ability/instant-impact.d.ts +2 -2
  36. package/engine/behaviour/ability/instant-impact.lua +4 -15
  37. package/engine/behaviour/ability/on-command-impact.d.ts +8 -0
  38. package/engine/behaviour/ability/on-command-impact.lua +25 -0
  39. package/engine/behaviour/ability/remove-buffs.d.ts +16 -0
  40. package/engine/behaviour/ability/remove-buffs.lua +28 -0
  41. package/engine/behaviour/ability/restore-mana.d.ts +15 -0
  42. package/engine/behaviour/ability/restore-mana.lua +29 -0
  43. package/engine/behaviour/ability.d.ts +27 -4
  44. package/engine/behaviour/ability.lua +152 -17
  45. package/engine/behaviour/unit/stun-immunity.d.ts +0 -1
  46. package/engine/behaviour/unit.d.ts +10 -2
  47. package/engine/behaviour/unit.lua +27 -0
  48. package/engine/buff.d.ts +103 -41
  49. package/engine/buff.lua +465 -212
  50. package/engine/game-map.d.ts +7 -0
  51. package/engine/game-map.lua +32 -0
  52. package/engine/internal/ability.d.ts +16 -13
  53. package/engine/internal/ability.lua +80 -76
  54. package/engine/internal/item/ability.lua +106 -0
  55. package/engine/internal/item+owner.lua +2 -2
  56. package/engine/internal/item.d.ts +2 -2
  57. package/engine/internal/item.lua +56 -25
  58. package/engine/internal/mechanics/ability-duration.lua +1 -1
  59. package/engine/internal/misc/ability-disable-counter.d.ts +2 -0
  60. package/engine/internal/misc/ability-disable-counter.lua +13 -0
  61. package/engine/internal/object-data/auto-attack-speed-increase.d.ts +1 -1
  62. package/engine/internal/object-data/auto-attack-speed-increase.lua +2 -0
  63. package/engine/internal/object-data/evasion-probability.d.ts +2 -0
  64. package/engine/internal/object-data/evasion-probability.lua +16 -0
  65. package/engine/internal/unit/ability.d.ts +10 -1
  66. package/engine/internal/unit/ability.lua +36 -14
  67. package/engine/internal/unit/add-item-to-slot-init.d.ts +2 -0
  68. package/engine/internal/unit/add-item-to-slot-init.lua +23 -0
  69. package/engine/internal/unit/add-item-to-slot.d.ts +2 -0
  70. package/engine/internal/unit/add-item-to-slot.lua +52 -0
  71. package/engine/internal/unit/bonus.d.ts +11 -8
  72. package/engine/internal/unit/bonus.lua +23 -1
  73. package/engine/internal/unit/ignore-events-items.d.ts +2 -0
  74. package/engine/internal/unit/ignore-events-items.lua +5 -0
  75. package/engine/internal/unit/item.d.ts +24 -0
  76. package/engine/internal/unit/item.lua +78 -0
  77. package/engine/internal/unit/main-selected.d.ts +13 -0
  78. package/engine/internal/unit/main-selected.lua +51 -0
  79. package/engine/internal/unit+ability.lua +2 -2
  80. package/engine/internal/unit+transport.lua +4 -10
  81. package/engine/internal/unit-missile-launch.lua +25 -6
  82. package/engine/internal/unit.d.ts +64 -16
  83. package/engine/internal/unit.lua +381 -134
  84. package/engine/internal/utility.lua +12 -0
  85. package/engine/lightning.d.ts +12 -5
  86. package/engine/lightning.lua +48 -14
  87. package/engine/local-client.d.ts +7 -2
  88. package/engine/local-client.lua +82 -0
  89. package/engine/object-data/auxiliary/animation-name.d.ts +1 -0
  90. package/engine/object-data/auxiliary/animation-name.lua +16 -0
  91. package/engine/object-data/auxiliary/attachment-preset.d.ts +7 -3
  92. package/engine/object-data/auxiliary/attachment-preset.lua +2 -2
  93. package/engine/object-data/auxiliary/combat-classification.d.ts +0 -2
  94. package/engine/object-data/auxiliary/sound-eax.d.ts +10 -0
  95. package/engine/object-data/auxiliary/sound-eax.lua +2 -0
  96. package/engine/object-data/auxiliary/sound-preset-name.d.ts +5 -1
  97. package/engine/object-data/auxiliary/tech-tree-dependency.d.ts +1 -1
  98. package/engine/object-data/entry/ability-type/blank-configurable.d.ts +0 -1
  99. package/engine/object-data/entry/ability-type/blank-configurable.lua +12 -1
  100. package/engine/object-data/entry/ability-type/blank-passive.d.ts +0 -1
  101. package/engine/object-data/entry/ability-type/carrion-swarm.d.ts +14 -0
  102. package/engine/object-data/entry/ability-type/carrion-swarm.lua +65 -0
  103. package/engine/object-data/entry/ability-type/channel.d.ts +0 -1
  104. package/engine/object-data/entry/ability-type/disease-cloud.lua +2 -2
  105. package/engine/object-data/entry/ability-type/engineering-upgrade.lua +2 -2
  106. package/engine/object-data/entry/ability-type/ensnare.d.ts +12 -0
  107. package/engine/object-data/entry/ability-type/ensnare.lua +52 -0
  108. package/engine/object-data/entry/ability-type/feral-spirit.lua +2 -2
  109. package/engine/object-data/entry/ability-type/mine.d.ts +10 -0
  110. package/engine/object-data/entry/ability-type/mine.lua +39 -0
  111. package/engine/object-data/entry/ability-type/phase-shift.d.ts +10 -0
  112. package/engine/object-data/entry/ability-type/phase-shift.lua +39 -0
  113. package/engine/object-data/entry/ability-type/phoenix-morph.lua +4 -4
  114. package/engine/object-data/entry/ability-type/raise-dead.d.ts +17 -0
  115. package/engine/object-data/entry/ability-type/raise-dead.lua +78 -0
  116. package/engine/object-data/entry/ability-type/shock-wave.d.ts +4 -0
  117. package/engine/object-data/entry/ability-type/shock-wave.lua +26 -0
  118. package/engine/object-data/entry/ability-type/spirit-touch.d.ts +2 -2
  119. package/engine/object-data/entry/ability-type/spirit-touch.lua +6 -6
  120. package/engine/object-data/entry/ability-type/summon-quilbeast.lua +2 -2
  121. package/engine/object-data/entry/ability-type/summon-water-elemental.lua +2 -2
  122. package/engine/object-data/entry/ability-type/web.d.ts +12 -0
  123. package/engine/object-data/entry/ability-type/web.lua +52 -0
  124. package/engine/object-data/entry/ability-type.d.ts +19 -18
  125. package/engine/object-data/entry/ability-type.lua +82 -33
  126. package/engine/object-data/entry/buff-type/applicable.d.ts +0 -1
  127. package/engine/object-data/entry/buff-type/applicable.lua +13 -37
  128. package/engine/object-data/entry/buff-type/blank.d.ts +0 -1
  129. package/engine/object-data/entry/buff-type.d.ts +1 -2
  130. package/engine/object-data/entry/buff-type.lua +2 -2
  131. package/engine/object-data/entry/destructible-type.d.ts +1 -2
  132. package/engine/object-data/entry/item-type/blank.d.ts +0 -1
  133. package/engine/object-data/entry/item-type.d.ts +15 -2
  134. package/engine/object-data/entry/item-type.lua +93 -2
  135. package/engine/object-data/entry/lightning-type.d.ts +1 -2
  136. package/engine/object-data/entry/sound-preset.d.ts +33 -0
  137. package/engine/object-data/entry/sound-preset.lua +140 -0
  138. package/engine/object-data/entry/unit-type.d.ts +45 -3
  139. package/engine/object-data/entry/unit-type.lua +394 -57
  140. package/engine/object-data/entry/upgrade/blank.d.ts +0 -1
  141. package/engine/object-data/entry/upgrade.d.ts +1 -2
  142. package/engine/object-data/entry/upgrade.lua +4 -4
  143. package/engine/object-data/entry.d.ts +18 -17
  144. package/engine/object-data/entry.lua +60 -32
  145. package/engine/object-data/utility/object-data-entry-id-generator.lua +7 -0
  146. package/engine/object-field/ability.d.ts +26 -3
  147. package/engine/object-field/ability.lua +54 -1
  148. package/engine/object-field.d.ts +2 -3
  149. package/engine/object-field.lua +4 -0
  150. package/engine/random.d.ts +1 -0
  151. package/engine/random.lua +9 -0
  152. package/engine/standard/entries/sound-preset.d.ts +10 -0
  153. package/engine/standard/entries/sound-preset.lua +10 -0
  154. package/engine/standard/entries/unit-type.d.ts +39 -1
  155. package/engine/standard/entries/unit-type.lua +39 -1
  156. package/engine/standard/fields/ability.d.ts +3 -1
  157. package/engine/standard/fields/ability.lua +3 -1
  158. package/engine/unit.d.ts +3 -0
  159. package/engine/unit.lua +12 -2
  160. package/event.d.ts +2 -3
  161. package/event.lua +9 -5
  162. package/index.d.ts +1 -0
  163. package/index.lua +1 -0
  164. package/lualib_bundle.lua +146 -42
  165. package/math/vec2.d.ts +2 -9
  166. package/math.d.ts +0 -2
  167. package/net/socket.d.ts +7 -1
  168. package/net/socket.lua +45 -4
  169. package/network.d.ts +1 -0
  170. package/network.lua +3 -2
  171. package/objutil/ability.d.ts +0 -1
  172. package/objutil/buff.d.ts +0 -1
  173. package/objutil/buff.lua +1 -1
  174. package/objutil/object.d.ts +0 -1
  175. package/objutil/unit.d.ts +0 -1
  176. package/objutil/unit.lua +8 -0
  177. package/package.json +13 -14
  178. package/patch-lua.d.ts +0 -0
  179. package/patch-lua.lua +10 -0
  180. package/property.d.ts +55 -0
  181. package/property.lua +374 -0
  182. package/string.d.ts +30 -0
  183. package/string.lua +14 -0
  184. package/util/stream.d.ts +0 -1
  185. package/utility/arrays.d.ts +11 -5
  186. package/utility/arrays.lua +34 -3
  187. package/utility/bit-set.d.ts +0 -2
  188. package/utility/lazy.d.ts +2 -0
  189. package/utility/lazy.lua +14 -0
  190. package/utility/linked-set.d.ts +11 -3
  191. package/utility/linked-set.lua +5 -2
  192. package/utility/lua-maps.d.ts +1 -2
  193. package/utility/lua-sets.d.ts +1 -2
  194. package/utility/reflection.lua +11 -7
  195. package/utility/types.d.ts +1 -0
  196. package/core/mapbounds.d.ts +0 -8
  197. package/core/mapbounds.lua +0 -12
@@ -1,8 +1,7 @@
1
- /// <reference types="warpack-types/warpack" />
2
1
  /** @noSelfInFile */
3
2
  import { AttachmentPreset, AttachmentPresetInput } from "./auxiliary/attachment-preset";
4
3
  import { MutableKeys } from "../../utility/types";
5
- export type ObjectDataEntryId = number & {
4
+ export type ObjectDataEntryId = (number | string) & {
6
5
  readonly __objectDataEntryId: unique symbol;
7
6
  };
8
7
  export type ObjectDataEntryIdType<T extends ObjectDataEntry> = T extends ObjectDataEntry<infer Id> ? Id : never;
@@ -10,8 +9,8 @@ export type ObjectDataEntryConstructor<T extends ObjectDataEntry> = OmitConstruc
10
9
  export type ObjectDataEntryAbstractConstructor<T extends ObjectDataEntry> = OmitConstructor<typeof ObjectDataEntry> & (abstract new (object: WarObject) => T);
11
10
  export type ObjectDataEntryProperties<T extends ObjectDataEntry> = Partial<T[MutableKeys<T>]>;
12
11
  export type ObjectDataEntryLevelFieldValueSupplier<ValueType extends string | number | boolean | undefined | Record<string, any>, InputValueType = ValueType> = ValueType | readonly ValueType[] | ((level: number, currentValue: InputValueType) => ValueType);
13
- export declare const extractObjectDataEntryLevelFieldValue: <ValueType extends string | number | boolean | Record<string, any> | undefined, InputValueType = ValueType>(supplier: ObjectDataEntryLevelFieldValueSupplier<ValueType, InputValueType>, level: number, currentValue: InputValueType) => ValueType;
14
- export declare const extractObjectDataEntryLevelArrayFieldValue: <T extends string | number | boolean | Record<string, any> | undefined, S extends T[]>(supplier: ObjectDataEntryLevelFieldValueSupplier<S, S>, level: number, currentValue: S) => S;
12
+ export declare const extractObjectDataEntryLevelFieldValue: <ValueType extends string | number | boolean | undefined | Record<string, any>, InputValueType = ValueType>(supplier: ObjectDataEntryLevelFieldValueSupplier<ValueType, InputValueType>, level: number, currentValue: InputValueType) => ValueType;
13
+ export declare const extractObjectDataEntryLevelArrayFieldValue: <T extends string | number | boolean | undefined | Record<string, any>, S extends T[]>(supplier: ObjectDataEntryLevelFieldValueSupplier<S>, level: number, currentValue: S) => S;
15
14
  export declare abstract class ObjectDataEntry<Id extends ObjectDataEntryId = ObjectDataEntryId> {
16
15
  protected readonly object: WarObject;
17
16
  static readonly BASE_ID: ObjectDataEntryId;
@@ -19,14 +18,16 @@ export declare abstract class ObjectDataEntry<Id extends ObjectDataEntryId = Obj
19
18
  private readonly levelFieldParametersByField;
20
19
  private readonly maxAffectedLevelByField;
21
20
  private _isInternal;
21
+ private get type();
22
22
  get isInternal(): boolean;
23
- protected static generateId(): number;
23
+ static get idType(): "number" | "string";
24
+ protected static generateId(): number | string;
24
25
  protected static getObjectData(map: WarMap): WarObjects;
25
- static getAllIdsByBaseIds<T extends ObjectDataEntry>(this: ObjectDataEntryAbstractConstructor<T>, baseIds: number | number[]): ObjectDataEntryIdType<T>[];
26
- static create<T extends ObjectDataEntry>(this: ObjectDataEntryConstructor<T>, ...args: [id?: number, properties?: ObjectDataEntryProperties<T>] | [properties: ObjectDataEntryProperties<T>]): T;
27
- static getAllByBaseIds<T extends ObjectDataEntry>(this: ObjectDataEntryAbstractConstructor<T>, baseIds: number | number[]): T[];
26
+ static getAllIdsByBaseIds<T extends ObjectDataEntry>(this: ObjectDataEntryAbstractConstructor<T>, baseIds: number | number[] | string | string[]): ObjectDataEntryIdType<T>[];
27
+ static create<T extends ObjectDataEntry>(this: ObjectDataEntryConstructor<T>, ...args: [id?: number | string, properties?: ObjectDataEntryProperties<T>] | [properties: ObjectDataEntryProperties<T>]): T;
28
+ static getAllByBaseIds<T extends ObjectDataEntry>(this: ObjectDataEntryAbstractConstructor<T>, baseIds: number | number[] | string | string[]): T[];
28
29
  static getAll<T extends ObjectDataEntry>(this: ObjectDataEntryAbstractConstructor<T>): T[];
29
- static of<T extends ObjectDataEntry>(this: ObjectDataEntryAbstractConstructor<T>, id: number): T | undefined;
30
+ static of<T extends ObjectDataEntry>(this: ObjectDataEntryAbstractConstructor<T>, id: number | string): T | undefined;
30
31
  constructor(object: WarObject);
31
32
  get id(): Id;
32
33
  get baseId(): Id;
@@ -43,8 +44,8 @@ export declare abstract class ObjectDataEntry<Id extends ObjectDataEntryId = Obj
43
44
  protected setNumberField(field: string, value: number): void;
44
45
  protected getStringField(field: string): string;
45
46
  protected setStringField(field: string, value: string): void;
46
- protected getObjectDataEntryIdField<Id extends ObjectDataEntryId>(field: string): Id;
47
- protected setObjectDataEntryIdField<Id extends ObjectDataEntryId>(field: string, value: Id): void;
47
+ protected getObjectDataEntryNumericIdField<Id extends ObjectDataEntryId & number>(field: string): Id;
48
+ protected setObjectDataEntryNumericIdField<Id extends ObjectDataEntryId & number>(field: string, value: Id): void;
48
49
  protected getAttachmentPresetField(modelPathField: string, nodeFQNField: string): AttachmentPreset | undefined;
49
50
  protected setAttachmentPresetField(modelPathField: string, nodeFQNField: string, attachmentPreset: AttachmentPresetInput | undefined): void;
50
51
  protected getBooleansField(field: string): boolean[];
@@ -53,8 +54,8 @@ export declare abstract class ObjectDataEntry<Id extends ObjectDataEntryId = Obj
53
54
  protected setNumbersField(field: string, values: number[]): void;
54
55
  protected getStringsField(field: string): string[];
55
56
  protected setStringsField(field: string, values: string[]): void;
56
- protected getObjectDataEntryIdsField<Id extends ObjectDataEntryId>(field: string): Id[];
57
- protected setObjectDataEntryIdsField<Id extends ObjectDataEntryId>(field: string, values: Id[]): void;
57
+ protected getObjectDataEntryNumericIdsField<Id extends ObjectDataEntryId & number>(field: string): Id[];
58
+ protected setObjectDataEntryNumericIdsField<Id extends ObjectDataEntryId & number>(field: string, values: Id[]): void;
58
59
  protected getAttachmentPresetListField(modelPathListField: string, nodeFQNFields: string[]): AttachmentPreset[];
59
60
  protected setAttachmentPresetListField(modelPathListField: string, nodeFQNFields: string[], lengthField: string, attachmentPresets: AttachmentPresetInput[]): void;
60
61
  protected setFlagLevelFieldValue(fieldId: string, flag: 1 | 2 | 4 | 8 | 16, supplier: ObjectDataEntryLevelFieldValueSupplier<boolean>): void;
@@ -65,16 +66,16 @@ export declare abstract class ObjectDataEntry<Id extends ObjectDataEntryId = Obj
65
66
  protected setNumberLevelField(field: string, values: ObjectDataEntryLevelFieldValueSupplier<number>): void;
66
67
  protected getStringLevelField(field: string): string[];
67
68
  protected setStringLevelField(field: string, values: ObjectDataEntryLevelFieldValueSupplier<string>): void;
68
- protected getObjectDataEntryIdLevelField<Id extends ObjectDataEntryId>(field: string): Id[];
69
- protected setObjectDataEntryIdLevelField<Id extends ObjectDataEntryId>(field: string, values: ObjectDataEntryLevelFieldValueSupplier<Id>): void;
69
+ protected getObjectDataEntryNumericIdLevelField<Id extends ObjectDataEntryId & number>(field: string): Id[];
70
+ protected setObjectDataEntryNumericIdLevelField<Id extends ObjectDataEntryId & number>(field: string, values: ObjectDataEntryLevelFieldValueSupplier<Id>): void;
70
71
  protected getBooleansLevelField(field: string): boolean[][];
71
72
  protected setBooleansLevelField(field: string, values: ObjectDataEntryLevelFieldValueSupplier<boolean[]>): void;
72
73
  protected getNumbersLevelField(field: string): number[][];
73
74
  protected setNumbersLevelField(field: string, values: ObjectDataEntryLevelFieldValueSupplier<number[]>): void;
74
75
  protected getStringsLevelField(field: string): string[][];
75
76
  protected setStringsLevelField(field: string, values: ObjectDataEntryLevelFieldValueSupplier<string[]>): void;
76
- protected getObjectDataEntryIdsLevelField<T extends ObjectDataEntryId>(field: string): T[][];
77
- protected setObjectDataEntryIdsLevelField<T extends ObjectDataEntryId>(field: string, values: ObjectDataEntryLevelFieldValueSupplier<T[]>): void;
77
+ protected getObjectDataEntryNumericIdsLevelField<T extends ObjectDataEntryId & number>(field: string): T[][];
78
+ protected setObjectDataEntryNumericIdsLevelField<T extends ObjectDataEntryId & number>(field: string, values: ObjectDataEntryLevelFieldValueSupplier<T[]>): void;
78
79
  private getLevelField;
79
80
  private setLevelField;
80
81
  }
@@ -7,10 +7,11 @@ local __TS__ClassExtends = ____lualib.__TS__ClassExtends
7
7
  local __TS__InstanceOf = ____lualib.__TS__InstanceOf
8
8
  local __TS__ArrayMap = ____lualib.__TS__ArrayMap
9
9
  local __TS__SetDescriptor = ____lualib.__TS__SetDescriptor
10
+ local __TS__ObjectDefineProperty = ____lualib.__TS__ObjectDefineProperty
10
11
  local __TS__StringSplit = ____lualib.__TS__StringSplit
11
12
  local __TS__ArrayFilter = ____lualib.__TS__ArrayFilter
12
13
  local ____exports = {}
13
- local booleanToData, dataToBoolean, numberToData, dataToNumber, stringToData, dataToString, objectDataEntryIdToData, dataToObjectDataEntryId, booleansToData, dataToBooleans, numbersToData, dataToNumbers, stringsToData, dataToStrings, objectDataEntryIdsToData, dataToObjectDataEntryIds, isDataNotBlank
14
+ local booleanToData, dataToBoolean, numberToData, dataToNumber, stringToData, dataToString, objectDataEntryNumericIdToData, dataToObjectDataEntryNumericId, objectDataEntryIdToData, dataToObjectDataEntryId, booleansToData, dataToBooleans, numbersToData, dataToNumbers, stringsToData, dataToStrings, objectDataEntryNumericIdsToData, dataToObjectDataEntryNumericIds, isDataNotBlank
14
15
  local ____attachment_2Dpreset = require("engine.object-data.auxiliary.attachment-preset")
15
16
  local extractAttachmentPresetInputModelPath = ____attachment_2Dpreset.extractAttachmentPresetInputModelPath
16
17
  local extractAttachmentPresetInputNodeFQN = ____attachment_2Dpreset.extractAttachmentPresetInputNodeFQN
@@ -124,7 +125,7 @@ function ObjectDataEntry.getAllByBaseIds(self, baseIds)
124
125
  local constructor = self
125
126
  for id, object in pairs(constructor:getObjectData(currentMap).all) do
126
127
  if dataBaseIds[object.parentId or id] ~= nil then
127
- local objectDataEntry = self:of(dataToObjectDataEntryId(id))
128
+ local objectDataEntry = self:of(dataToObjectDataEntryId(id, self.idType))
128
129
  if objectDataEntry ~= nil and not objectDataEntry.isInternal then
129
130
  result[#result + 1] = objectDataEntry
130
131
  end
@@ -139,7 +140,7 @@ function ObjectDataEntry.getAll(self)
139
140
  local constructor = self
140
141
  local result = {}
141
142
  for id in pairs(constructor:getObjectData(currentMap).all) do
142
- local objectDataEntry = self:of(dataToObjectDataEntryId(id))
143
+ local objectDataEntry = self:of(dataToObjectDataEntryId(id, self.idType))
143
144
  if objectDataEntry ~= nil and not objectDataEntry.isInternal then
144
145
  result[#result + 1] = objectDataEntry
145
146
  end
@@ -156,9 +157,9 @@ function ObjectDataEntry.of(self, id)
156
157
  if object == nil then
157
158
  return nil
158
159
  end
159
- local objectDataEntry = objectDataEntryByObjectDataEntryId[dataToObjectDataEntryId(object.id)]
160
+ local objectDataEntry = objectDataEntryByObjectDataEntryId[dataToObjectDataEntryId(object.id, self.idType)]
160
161
  if objectDataEntry == nil then
161
- if not constructor.IS_SYNTHETIC and (self.BASE_ID == 0 or dataToObjectDataEntryId(object.parentId) == self.BASE_ID) then
162
+ if not constructor.IS_SYNTHETIC and (self.BASE_ID == 0 or dataToObjectDataEntryId(object.parentId, self.idType) == self.BASE_ID) then
162
163
  local AbstractObjectDataEntryView = __TS__Class()
163
164
  AbstractObjectDataEntryView.name = "AbstractObjectDataEntryView"
164
165
  __TS__ClassExtends(AbstractObjectDataEntryView, constructor)
@@ -231,13 +232,13 @@ function ObjectDataEntry.prototype.setStringField(self, field, value)
231
232
  stringToData(value)
232
233
  )
233
234
  end
234
- function ObjectDataEntry.prototype.getObjectDataEntryIdField(self, field)
235
- return dataToObjectDataEntryId(self.object:getField(field))
235
+ function ObjectDataEntry.prototype.getObjectDataEntryNumericIdField(self, field)
236
+ return dataToObjectDataEntryNumericId(self.object:getField(field))
236
237
  end
237
- function ObjectDataEntry.prototype.setObjectDataEntryIdField(self, field, value)
238
+ function ObjectDataEntry.prototype.setObjectDataEntryNumericIdField(self, field, value)
238
239
  self.object:setField(
239
240
  field,
240
- objectDataEntryIdToData(value)
241
+ objectDataEntryNumericIdToData(value)
241
242
  )
242
243
  end
243
244
  function ObjectDataEntry.prototype.getAttachmentPresetField(self, modelPathField, nodeFQNField)
@@ -285,13 +286,13 @@ function ObjectDataEntry.prototype.setStringsField(self, field, values)
285
286
  stringsToData(values)
286
287
  )
287
288
  end
288
- function ObjectDataEntry.prototype.getObjectDataEntryIdsField(self, field)
289
- return dataToObjectDataEntryIds(self.object:getField(field))
289
+ function ObjectDataEntry.prototype.getObjectDataEntryNumericIdsField(self, field)
290
+ return dataToObjectDataEntryNumericIds(self.object:getField(field))
290
291
  end
291
- function ObjectDataEntry.prototype.setObjectDataEntryIdsField(self, field, values)
292
+ function ObjectDataEntry.prototype.setObjectDataEntryNumericIdsField(self, field, values)
292
293
  self.object:setField(
293
294
  field,
294
- objectDataEntryIdsToData(values)
295
+ objectDataEntryNumericIdsToData(values)
295
296
  )
296
297
  end
297
298
  function ObjectDataEntry.prototype.getAttachmentPresetListField(self, modelPathListField, nodeFQNFields)
@@ -369,16 +370,16 @@ function ObjectDataEntry.prototype.setStringLevelField(self, field, values)
369
370
  stringToData
370
371
  )
371
372
  end
372
- function ObjectDataEntry.prototype.getObjectDataEntryIdLevelField(self, field)
373
- return self:getLevelField(field, dataToObjectDataEntryId)
373
+ function ObjectDataEntry.prototype.getObjectDataEntryNumericIdLevelField(self, field)
374
+ return self:getLevelField(field, dataToObjectDataEntryNumericId)
374
375
  end
375
- function ObjectDataEntry.prototype.setObjectDataEntryIdLevelField(self, field, values)
376
+ function ObjectDataEntry.prototype.setObjectDataEntryNumericIdLevelField(self, field, values)
376
377
  self:setLevelField(
377
378
  field,
378
379
  values,
379
380
  ____exports.extractObjectDataEntryLevelFieldValue,
380
- dataToObjectDataEntryId,
381
- objectDataEntryIdToData
381
+ dataToObjectDataEntryNumericId,
382
+ objectDataEntryNumericIdToData
382
383
  )
383
384
  end
384
385
  function ObjectDataEntry.prototype.getBooleansLevelField(self, field)
@@ -417,23 +418,26 @@ function ObjectDataEntry.prototype.setStringsLevelField(self, field, values)
417
418
  stringsToData
418
419
  )
419
420
  end
420
- function ObjectDataEntry.prototype.getObjectDataEntryIdsLevelField(self, field)
421
- return self:getLevelField(field, dataToObjectDataEntryIds)
421
+ function ObjectDataEntry.prototype.getObjectDataEntryNumericIdsLevelField(self, field)
422
+ return self:getLevelField(field, dataToObjectDataEntryNumericIds)
422
423
  end
423
- function ObjectDataEntry.prototype.setObjectDataEntryIdsLevelField(self, field, values)
424
+ function ObjectDataEntry.prototype.setObjectDataEntryNumericIdsLevelField(self, field, values)
424
425
  self:setLevelField(
425
426
  field,
426
427
  values,
427
428
  ____exports.extractObjectDataEntryLevelArrayFieldValue,
428
- dataToObjectDataEntryIds,
429
- objectDataEntryIdsToData
429
+ dataToObjectDataEntryNumericIds,
430
+ objectDataEntryNumericIdsToData
430
431
  )
431
432
  end
432
433
  function ObjectDataEntry.prototype.getLevelField(self, field, dataToValue)
433
434
  local values = {}
434
435
  local object = self.object
435
436
  for level = 1, tonumber(object:getField("levels")) or 1 do
436
- values[level] = dataToValue(object:getField((field .. "+") .. tostring(level)))
437
+ values[level] = dataToValue(
438
+ object:getField((field .. "+") .. tostring(level)),
439
+ "number"
440
+ )
437
441
  end
438
442
  return values
439
443
  end
@@ -473,6 +477,14 @@ function ObjectDataEntry.prototype.setLevelField(self, field, supplier, extracto
473
477
  end
474
478
  ObjectDataEntry.BASE_ID = 0
475
479
  ObjectDataEntry.IS_SYNTHETIC = false
480
+ __TS__SetDescriptor(
481
+ ObjectDataEntry.prototype,
482
+ "type",
483
+ {get = function(self)
484
+ return self.constructor
485
+ end},
486
+ true
487
+ )
476
488
  __TS__SetDescriptor(
477
489
  ObjectDataEntry.prototype,
478
490
  "isInternal",
@@ -491,11 +503,18 @@ __TS__SetDescriptor(
491
503
  },
492
504
  true
493
505
  )
506
+ __TS__ObjectDefineProperty(
507
+ ObjectDataEntry,
508
+ "idType",
509
+ {get = function(self)
510
+ return type(self.BASE_ID) == "number" and "number" or "string"
511
+ end}
512
+ )
494
513
  __TS__SetDescriptor(
495
514
  ObjectDataEntry.prototype,
496
515
  "id",
497
516
  {get = function(self)
498
- return dataToObjectDataEntryId(self.object.id)
517
+ return dataToObjectDataEntryId(self.object.id, self.type.idType)
499
518
  end},
500
519
  true
501
520
  )
@@ -503,7 +522,7 @@ __TS__SetDescriptor(
503
522
  ObjectDataEntry.prototype,
504
523
  "baseId",
505
524
  {get = function(self)
506
- return dataToObjectDataEntryId(self.object.parentId or self.object.id)
525
+ return dataToObjectDataEntryId(self.object.parentId or self.object.id, self.type.idType)
507
526
  end},
508
527
  true
509
528
  )
@@ -533,10 +552,10 @@ end
533
552
  dataToString = function(data)
534
553
  return tostring(data or "")
535
554
  end
536
- objectDataEntryIdToData = function(value)
555
+ objectDataEntryNumericIdToData = function(value)
537
556
  return value == 0 and "" or string.pack(">I4", value)
538
557
  end
539
- dataToObjectDataEntryId = function(data)
558
+ dataToObjectDataEntryNumericId = function(data)
540
559
  local dataString = dataToString(data)
541
560
  if isDataNotBlank(nil, dataString) then
542
561
  return (string.unpack(">I4", dataString))
@@ -544,6 +563,15 @@ dataToObjectDataEntryId = function(data)
544
563
  return 0
545
564
  end
546
565
  end
566
+ objectDataEntryIdToData = function(value)
567
+ return type(value) == "number" and objectDataEntryNumericIdToData(value) or value
568
+ end
569
+ dataToObjectDataEntryId = function(data, ____type)
570
+ if ____type == "number" then
571
+ return dataToObjectDataEntryNumericId(data)
572
+ end
573
+ return dataToString(data)
574
+ end
547
575
  booleansToData = function(value)
548
576
  return table.concat(
549
577
  __TS__ArrayMap(
@@ -607,16 +635,16 @@ dataToStrings = function(data)
607
635
  function(____, data) return dataToString(data) end
608
636
  )
609
637
  end
610
- objectDataEntryIdsToData = function(value)
638
+ objectDataEntryNumericIdsToData = function(value)
611
639
  return table.concat(
612
640
  __TS__ArrayMap(
613
641
  value,
614
- function(____, objectDataEntryId) return objectDataEntryIdToData(objectDataEntryId) end
642
+ function(____, objectDataEntryId) return objectDataEntryNumericIdToData(objectDataEntryId) end
615
643
  ),
616
644
  ","
617
645
  )
618
646
  end
619
- dataToObjectDataEntryIds = function(data)
647
+ dataToObjectDataEntryNumericIds = function(data)
620
648
  return __TS__ArrayMap(
621
649
  __TS__ArrayFilter(
622
650
  __TS__StringSplit(
@@ -625,7 +653,7 @@ dataToObjectDataEntryIds = function(data)
625
653
  ),
626
654
  isDataNotBlank
627
655
  ),
628
- function(____, data) return dataToObjectDataEntryId(data) end
656
+ function(____, data) return dataToObjectDataEntryNumericId(data) end
629
657
  )
630
658
  end
631
659
  isDataNotBlank = function(self, data)
@@ -1,5 +1,6 @@
1
1
  local ____lualib = require("lualib_bundle")
2
2
  local __TS__Class = ____lualib.__TS__Class
3
+ local __TS__New = ____lualib.__TS__New
3
4
  local ____exports = {}
4
5
  local ____preconditions = require("utility.preconditions")
5
6
  local checkNotNull = ____preconditions.checkNotNull
@@ -60,4 +61,10 @@ function ObjectDataEntryIdGenerator.prototype.next(self)
60
61
  self.id = id
61
62
  return id
62
63
  end
64
+ ---
65
+ -- @internal For use by internal systems only.
66
+ ____exports.abilityTypeIdGenerator = __TS__New(
67
+ ____exports.ObjectDataEntryIdGenerator,
68
+ fourCC("A000")
69
+ )
63
70
  return ____exports
@@ -6,6 +6,9 @@ import { ObjectDataEntryId } from "../object-data/entry";
6
6
  import { LightningTypeId } from "../object-data/entry/lightning-type";
7
7
  import { CombatClassifications } from "../object-data/auxiliary/combat-classification";
8
8
  import { UnitTypeId } from "../object-data/entry/unit-type";
9
+ import { BuffResistanceType } from "../object-data/auxiliary/buff-resistance-type";
10
+ import { BuffPolarity } from "../object-data/auxiliary/buff-polarity";
11
+ import { ReadonlyNonEmptyLinkedSet } from "../../utility/linked-set";
9
12
  export declare abstract class AbilityField<ValueType extends number | string | boolean = number | string | boolean, NativeFieldType extends jabilityfield = jabilityfield> extends ObjectField<AbilityType, Ability, ValueType, NativeFieldType> {
10
13
  protected get instanceClass(): typeof Ability;
11
14
  protected getObjectDataEntryId(instance: Ability): AbilityTypeId;
@@ -42,9 +45,10 @@ export declare class AbilityStringField extends AbilityField<string, jabilitystr
42
45
  protected setNativeFieldValue(instance: Ability, value: string): boolean;
43
46
  static get valueChangeEvent(): ObjectFieldValueChangeEvent<AbilityStringField>;
44
47
  }
45
- export declare abstract class AbilityArrayField<ValueType extends number | string | boolean = number | string | boolean, NativeFieldType = unknown> extends ObjectArrayField<AbilityType, Ability, ValueType, NativeFieldType> {
48
+ export declare abstract class AbilityArrayField<ValueType extends number | string | boolean = number | string | boolean, NativeFieldType extends jabilityfield = jabilityfield> extends ObjectArrayField<AbilityType, Ability, ValueType, NativeFieldType> {
46
49
  protected get instanceClass(): typeof Ability;
47
50
  protected getObjectDataEntryId(instance: Ability): AbilityTypeId;
51
+ protected hasNativeFieldValue(instance: Ability): boolean;
48
52
  }
49
53
  export declare class AbilityStringArrayField extends AbilityArrayField<string, jabilitystringlevelfield> {
50
54
  protected get defaultValue(): string;
@@ -107,11 +111,30 @@ export declare class AbilityAbilityTypeIdLevelField extends AbilityObjectDataEnt
107
111
  }
108
112
  export declare class AbilityUnitTypeIdLevelField extends AbilityObjectDataEntryIdLevelField<UnitTypeId> {
109
113
  }
114
+ export declare abstract class AbilityEnumLevelField<T extends number> extends AbilityLevelField<T, T, jabilityintegerlevelfield> {
115
+ protected abstract values: ReadonlyNonEmptyLinkedSet<T>;
116
+ protected get defaultValue(): T;
117
+ protected getNativeFieldById(id: number): jabilityintegerlevelfield;
118
+ protected getNativeFieldValue(instance: Ability, level: number): T;
119
+ protected setNativeFieldValue(instance: Ability, level: number, value: T): boolean;
120
+ static get valueChangeEvent(): ObjectLevelFieldValueChangeEvent<AbilityBooleanLevelField>;
121
+ }
122
+ export declare class AbilityBuffPolarityLevelField extends AbilityEnumLevelField<BuffPolarity> {
123
+ protected values: ReadonlyNonEmptyLinkedSet<BuffPolarity>;
124
+ }
125
+ export declare class AbilityBuffResistanceTypeLevelField extends AbilityEnumLevelField<BuffResistanceType> {
126
+ protected values: ReadonlyNonEmptyLinkedSet<BuffResistanceType>;
127
+ }
110
128
  export declare class AbilityCombatClassificationsLevelField extends AbilityLevelField<CombatClassifications, CombatClassifications, jabilityintegerlevelfield> {
111
129
  protected get defaultValue(): CombatClassifications;
112
130
  protected getNativeFieldById(id: number): jabilityintegerlevelfield;
113
131
  protected getNativeFieldValue(instance: Ability, level: number): CombatClassifications;
114
132
  protected setNativeFieldValue(instance: Ability, level: number, value: CombatClassifications): boolean;
115
133
  }
116
- export type AbilityDependentValue<ValueType extends boolean | number | string> = ValueType | AbilityField<ValueType> | AbilityLevelField<ValueType> | ((ability: Ability) => ValueType);
117
- export declare const resolveCurrentAbilityDependentValue: <ValueType extends string | number | boolean>(ability: Ability, value: AbilityDependentValue<ValueType>) => ValueType;
134
+ export type ReadonlySubscribableAbilityDependentValue<ValueType extends boolean | number | string> = ValueType | ReadonlyObjectFieldType<AbilityField<ValueType>> | ReadonlyObjectLevelFieldType<AbilityLevelField<ValueType>>;
135
+ export type SubscribableAbilityDependentValue<ValueType extends boolean | number | string> = ValueType | AbilityField<ValueType> | AbilityLevelField<ValueType>;
136
+ export type AbilityDependentValue<ValueType extends boolean | number | string> = SubscribableAbilityDependentValue<ValueType> | ((ability: Ability) => ValueType);
137
+ export declare const resolveCurrentAbilityDependentValue: {
138
+ <ValueType extends boolean | number | string>(ability: Ability, value: AbilityDependentValue<ValueType>): ValueType;
139
+ <ValueType extends boolean | number | string>(ability: Ability, value?: AbilityDependentValue<ValueType>): ValueType | undefined;
140
+ };
@@ -13,6 +13,8 @@ local ObjectField = ____object_2Dfield.ObjectField
13
13
  local ObjectLevelField = ____object_2Dfield.ObjectLevelField
14
14
  local ____ability_2Dtype = require("engine.object-data.entry.ability-type")
15
15
  local AbilityType = ____ability_2Dtype.AbilityType
16
+ local ____linked_2Dset = require("utility.linked-set")
17
+ local nonEmptyLinkedSetOf = ____linked_2Dset.nonEmptyLinkedSetOf
16
18
  local convertAbilityBooleanField = _G.ConvertAbilityBooleanField
17
19
  local convertAbilityIntegerField = _G.ConvertAbilityIntegerField
18
20
  local convertAbilityRealField = _G.ConvertAbilityRealField
@@ -195,6 +197,9 @@ __TS__ClassExtends(AbilityArrayField, ObjectArrayField)
195
197
  function AbilityArrayField.prototype.getObjectDataEntryId(self, instance)
196
198
  return instance.typeId
197
199
  end
200
+ function AbilityArrayField.prototype.hasNativeFieldValue(self, instance)
201
+ return instance:hasField(self.nativeField)
202
+ end
198
203
  __TS__SetDescriptor(
199
204
  AbilityArrayField.prototype,
200
205
  "instanceClass",
@@ -259,7 +264,7 @@ local AbilityLevelField = ____exports.AbilityLevelField
259
264
  AbilityLevelField.name = "AbilityLevelField"
260
265
  __TS__ClassExtends(AbilityLevelField, ObjectLevelField)
261
266
  function AbilityLevelField.prototype.getLevelCount(self, entry)
262
- return __TS__InstanceOf(entry, Ability) and #entry.levels or entry.levelCount
267
+ return entry.levelCount
263
268
  end
264
269
  function AbilityLevelField.prototype.getObjectDataEntryId(self, instance)
265
270
  return instance.typeId
@@ -431,6 +436,54 @@ ____exports.AbilityUnitTypeIdLevelField = __TS__Class()
431
436
  local AbilityUnitTypeIdLevelField = ____exports.AbilityUnitTypeIdLevelField
432
437
  AbilityUnitTypeIdLevelField.name = "AbilityUnitTypeIdLevelField"
433
438
  __TS__ClassExtends(AbilityUnitTypeIdLevelField, ____exports.AbilityObjectDataEntryIdLevelField)
439
+ ____exports.AbilityEnumLevelField = __TS__Class()
440
+ local AbilityEnumLevelField = ____exports.AbilityEnumLevelField
441
+ AbilityEnumLevelField.name = "AbilityEnumLevelField"
442
+ __TS__ClassExtends(AbilityEnumLevelField, ____exports.AbilityLevelField)
443
+ function AbilityEnumLevelField.prototype.getNativeFieldById(self, id)
444
+ return convertAbilityIntegerLevelField(id)
445
+ end
446
+ function AbilityEnumLevelField.prototype.getNativeFieldValue(self, instance, level)
447
+ local value = instance:getField(self.nativeField, level)
448
+ if self.values:contains(value) then
449
+ return value
450
+ end
451
+ return self.values:first()
452
+ end
453
+ function AbilityEnumLevelField.prototype.setNativeFieldValue(self, instance, level, value)
454
+ return instance:setField(self.nativeField, level, value)
455
+ end
456
+ __TS__SetDescriptor(
457
+ AbilityEnumLevelField.prototype,
458
+ "defaultValue",
459
+ {get = function(self)
460
+ return self.values:first()
461
+ end},
462
+ true
463
+ )
464
+ __TS__ObjectDefineProperty(
465
+ AbilityEnumLevelField,
466
+ "valueChangeEvent",
467
+ {get = function(self)
468
+ return self:getOrCreateValueChangeEvent()
469
+ end}
470
+ )
471
+ ____exports.AbilityBuffPolarityLevelField = __TS__Class()
472
+ local AbilityBuffPolarityLevelField = ____exports.AbilityBuffPolarityLevelField
473
+ AbilityBuffPolarityLevelField.name = "AbilityBuffPolarityLevelField"
474
+ __TS__ClassExtends(AbilityBuffPolarityLevelField, ____exports.AbilityEnumLevelField)
475
+ function AbilityBuffPolarityLevelField.prototype.____constructor(self, ...)
476
+ AbilityBuffPolarityLevelField.____super.prototype.____constructor(self, ...)
477
+ self.values = nonEmptyLinkedSetOf(0, 1, 2)
478
+ end
479
+ ____exports.AbilityBuffResistanceTypeLevelField = __TS__Class()
480
+ local AbilityBuffResistanceTypeLevelField = ____exports.AbilityBuffResistanceTypeLevelField
481
+ AbilityBuffResistanceTypeLevelField.name = "AbilityBuffResistanceTypeLevelField"
482
+ __TS__ClassExtends(AbilityBuffResistanceTypeLevelField, ____exports.AbilityEnumLevelField)
483
+ function AbilityBuffResistanceTypeLevelField.prototype.____constructor(self, ...)
484
+ AbilityBuffResistanceTypeLevelField.____super.prototype.____constructor(self, ...)
485
+ self.values = nonEmptyLinkedSetOf(1, 2, 3)
486
+ end
434
487
  local allowedTargetCombatClassificationsByLevelByAbilityTypeId = postcompile(function()
435
488
  local allowedTargetCombatClassificationsByLevelByAbilityTypeId = {}
436
489
  for ____, abilityType in ipairs(AbilityType:getAll()) do
@@ -1,4 +1,3 @@
1
- /// <reference types="@typescript-to-lua/language-extensions" />
2
1
  /** @noSelfInFile */
3
2
  import { DispatchingEvent } from "../event";
4
3
  import { AbstractConstructor } from "../utility/types";
@@ -17,6 +16,8 @@ declare abstract class ObjectFieldBase<ObjectDataEntryType extends ObjectDataEnt
17
16
  readonly id: ObjectFieldId;
18
17
  protected abstract getNativeFieldById(id: number): NativeFieldType;
19
18
  protected abstract getObjectDataEntryId(instance: InstanceType): ObjectDataEntryIdType<ObjectDataEntryType>;
19
+ protected abstract hasNativeFieldValue(instance: InstanceType): boolean;
20
+ hasValue(instance: InstanceType): boolean;
20
21
  constructor(id: number);
21
22
  static create<T extends ObjectFieldBase<any, any, any, any>>(this: ObjectFieldConstructor<T>, id?: number): T & symbol;
22
23
  static of<T extends ObjectFieldBase<any, any, any, any>>(this: ObjectFieldAbstractConstructor<T>, id: number): T | undefined;
@@ -36,7 +37,6 @@ export type ReadonlyObjectFieldType<T extends ObjectField<any, any, any, any>> =
36
37
  type ReadonlyObjectFieldConstructor<T extends ObjectField> = OmitConstructor<typeof ObjectField> & (abstract new (...args: any[]) => ReadonlyObjectFieldType<T>);
37
38
  export declare abstract class ObjectField<ObjectDataEntryType extends ObjectDataEntry = ObjectDataEntry, InstanceType extends AnyNotNil = AnyNotNil, ValueType extends number | string | boolean = number | string | boolean, NativeFieldType = unknown> extends ObjectFieldBase<ObjectDataEntryType, InstanceType, ValueType, NativeFieldType> {
38
39
  protected abstract readonly defaultValue: ValueType;
39
- protected abstract hasNativeFieldValue(instance: InstanceType): boolean;
40
40
  protected abstract getNativeFieldValue(instance: InstanceType): ValueType;
41
41
  protected abstract setNativeFieldValue(instance: InstanceType, value: ValueType): boolean;
42
42
  getValue(entry: ObjectDataEntryType | InstanceType): ValueType;
@@ -72,7 +72,6 @@ export declare abstract class ObjectArrayField<ObjectDataEntryType extends Objec
72
72
  }
73
73
  export declare abstract class ObjectLevelField<ObjectDataEntryType extends ObjectDataEntry = ObjectDataEntry, InstanceType extends AnyNotNil = AnyNotNil, ValueType extends number | string | boolean = number | string | boolean, InputValueType extends ValueType = never, NativeFieldType = unknown> extends ObjectFieldBase<ObjectDataEntryType, InstanceType, ValueType[], NativeFieldType> {
74
74
  protected abstract readonly defaultValue: ValueType;
75
- protected abstract hasNativeFieldValue(instance: InstanceType): boolean;
76
75
  protected abstract getNativeFieldValue(instance: InstanceType, level: number): ValueType;
77
76
  protected abstract setNativeFieldValue(instance: InstanceType, level: number, value: ValueType): boolean;
78
77
  protected abstract getLevelCount(entry: ObjectDataEntryType | InstanceType): number;
@@ -46,6 +46,10 @@ end
46
46
  function ObjectFieldBase.prototype.supports(self, instance)
47
47
  return __TS__InstanceOf(instance, self.instanceClass)
48
48
  end
49
+ function ObjectFieldBase.prototype.hasValue(self, instance)
50
+ local defaultValueByObjectDataEntryId = defaultValueByObjectDataEntryIdByObjectFieldId[self.id]
51
+ return defaultValueByObjectDataEntryId ~= nil and defaultValueByObjectDataEntryId[self:getObjectDataEntryId(instance)] ~= nil or self:hasNativeFieldValue(instance)
52
+ end
49
53
  function ObjectFieldBase.create(self, id)
50
54
  return __TS__New(
51
55
  self,
@@ -8,3 +8,4 @@ export declare const randomFloat: {
8
8
  (upperBound?: number): number;
9
9
  (lowerBound: number, upperBound: number): number;
10
10
  };
11
+ export declare const randomXY: (centerX: number, centerY: number, range: number) => LuaMultiReturn<[x: number, y: number]>;
package/engine/random.lua CHANGED
@@ -1,9 +1,18 @@
1
1
  local ____exports = {}
2
2
  local ____math = require("math")
3
3
  local MAXIMUM_INTEGER = ____math.MAXIMUM_INTEGER
4
+ local PI = ____math.PI
4
5
  local getRandomInt = GetRandomInt
5
6
  local getRandomReal = GetRandomReal
7
+ local cos = math.cos
8
+ local sin = math.sin
9
+ local sqrt = math.sqrt
6
10
  ____exports.randomAngle = function() return getRandomReal(0, 360) end
7
11
  ____exports.randomInteger = function(m, n) return n ~= nil and getRandomInt(m, n) or getRandomInt(0, m or MAXIMUM_INTEGER) end
8
12
  ____exports.randomFloat = function(m, n) return n ~= nil and getRandomReal(m, n) or getRandomReal(0, m or MAXIMUM_INTEGER) end
13
+ ____exports.randomXY = function(centerX, centerY, range)
14
+ local r = range * sqrt(getRandomReal(0, 1))
15
+ local t = getRandomReal(0, 1) * 2 * PI
16
+ return centerX + r * cos(t), centerY + r * sin(t)
17
+ end
9
18
  return ____exports
@@ -0,0 +1,10 @@
1
+ /** @noSelfInFile */
2
+ import { StandardSoundPresetId } from "../../object-data/entry/sound-preset";
3
+ export declare const ABOMINATION_PISSED_SOUND_PRESET_ID: StandardSoundPresetId;
4
+ export declare const ABOMINATION_READY_SOUND_PRESET_ID: StandardSoundPresetId;
5
+ export declare const ABOMINATION_WAR_CRY_SOUND_PRESET_ID: StandardSoundPresetId;
6
+ export declare const AXE_MEDIUM_CHOP_WOOD_SOUND_PRESET_ID: StandardSoundPresetId;
7
+ export declare const IMPALE_SOUND_PRESET_ID: StandardSoundPresetId;
8
+ export declare const IMPALE_HIT_SOUND_PRESET_ID: StandardSoundPresetId;
9
+ export declare const IMPALE_LAND_SOUND_PRESET_ID: StandardSoundPresetId;
10
+ export declare const IMPALE_CAST_SOUND_PRESET_ID: StandardSoundPresetId;
@@ -0,0 +1,10 @@
1
+ local ____exports = {}
2
+ ____exports.ABOMINATION_PISSED_SOUND_PRESET_ID = "AbominationPissed"
3
+ ____exports.ABOMINATION_READY_SOUND_PRESET_ID = "AbominationReady"
4
+ ____exports.ABOMINATION_WAR_CRY_SOUND_PRESET_ID = "AbominationWarcry"
5
+ ____exports.AXE_MEDIUM_CHOP_WOOD_SOUND_PRESET_ID = "AxeMediumChopWood"
6
+ ____exports.IMPALE_SOUND_PRESET_ID = "Impale"
7
+ ____exports.IMPALE_HIT_SOUND_PRESET_ID = "ImpaleHit"
8
+ ____exports.IMPALE_LAND_SOUND_PRESET_ID = "ImpaleLand"
9
+ ____exports.IMPALE_CAST_SOUND_PRESET_ID = "ImpaleCast"
10
+ return ____exports
@@ -9,11 +9,33 @@ export declare const RIFLEMAN_UNIT_TYPE_ID: StandardUnitTypeId;
9
9
  export declare const SIEGE_ENGINE_UNIT_TYPE_ID: StandardUnitTypeId;
10
10
  export declare const SORCERESS_UNIT_TYPE_ID: StandardUnitTypeId;
11
11
  export declare const SPELLBREAKER_UNIT_TYPE_ID: StandardUnitTypeId;
12
- export declare const PALADIN_HERO_UNIT_TYPE_ID: StandardHeroUnitTypeId;
13
12
  export declare const ARCHMAGE_HERO_UNIT_TYPE_ID: StandardHeroUnitTypeId;
13
+ export declare const BLOOD_MAGE_HERO_UNIT_TYPE_ID: StandardHeroUnitTypeId;
14
+ export declare const MOUNTAIN_KING_HERO_UNIT_TYPE_ID: StandardHeroUnitTypeId;
15
+ export declare const PALADIN_HERO_UNIT_TYPE_ID: StandardHeroUnitTypeId;
16
+ export declare const ARCHER_HIGH_ELF_UNIT_TYPE_ID: StandardUnitTypeId;
14
17
  export declare const CAPTAIN_UNIT_TYPE_ID: StandardUnitTypeId;
18
+ export declare const SWORDSMAN_UNIT_TYPE_ID: StandardUnitTypeId;
19
+ export declare const ADMIRAL_PROUDMOORE_HERO_UNIT_TYPE_ID: StandardHeroUnitTypeId;
20
+ export declare const ANASTERIAN_SUNSTRIDER_HERO_UNIT_TYPE_ID: StandardHeroUnitTypeId;
21
+ export declare const ANTONIDAS_HERO_UNIT_TYPE_ID: StandardHeroUnitTypeId;
22
+ export declare const ANTONIDAS_GHOST_HERO_UNIT_TYPE_ID: StandardHeroUnitTypeId;
15
23
  export declare const ARTHAS_HERO_UNIT_TYPE_ID: StandardHeroUnitTypeId;
16
24
  export declare const ARTHAS_WITH_FROSTMOURNE_HERO_UNIT_TYPE_ID: StandardHeroUnitTypeId;
25
+ export declare const DAGREN_THE_ORCSLAYER_HERO_UNIT_TYPE_ID: StandardHeroUnitTypeId;
26
+ export declare const HALAHK_THE_LIFEBRINGER_HERO_UNIT_TYPE_ID: StandardHeroUnitTypeId;
27
+ export declare const JAINA_HERO_UNIT_TYPE_ID: StandardHeroUnitTypeId;
28
+ export declare const JENNALLA_DEEMSPRING_HERO_UNIT_TYPE_ID: StandardHeroUnitTypeId;
29
+ export declare const KAEL_HERO_UNIT_TYPE_ID: StandardHeroUnitTypeId;
30
+ export declare const KELEN_THE_SEEKER_HERO_UNIT_TYPE_ID: StandardHeroUnitTypeId;
31
+ export declare const LORD_GARITHOS_HERO_UNIT_TYPE_ID: StandardHeroUnitTypeId;
32
+ export declare const LORD_NICHOLAS_BUZAN_HERO_UNIT_TYPE_ID: StandardHeroUnitTypeId;
33
+ export declare const MAGROTH_THE_DEFENDER_HERO_UNIT_TYPE_ID: StandardHeroUnitTypeId;
34
+ export declare const MURADIN_BRONZEBEARD_HERO_UNIT_TYPE_ID: StandardHeroUnitTypeId;
35
+ export declare const SIR_GREGORY_EDMUNSON_HERO_UNIT_TYPE_ID: StandardHeroUnitTypeId;
36
+ export declare const SYLVANAS_WINDRUNNER_HERO_UNIT_TYPE_ID: StandardHeroUnitTypeId;
37
+ export declare const THALORIEN_DAWNSEEKER_HERO_UNIT_TYPE_ID: StandardHeroUnitTypeId;
38
+ export declare const UTHER_HERO_UNIT_TYPE_ID: StandardHeroUnitTypeId;
17
39
  export declare const BATRIDER_UNIT_TYPE_ID: StandardUnitTypeId;
18
40
  export declare const DEMOLISHER_UNIT_TYPE_ID: StandardUnitTypeId;
19
41
  export declare const GRUNT_UNIT_TYPE_ID: StandardUnitTypeId;
@@ -25,7 +47,22 @@ export declare const SPIRIT_WALKER_UNIT_TYPE_ID: StandardUnitTypeId;
25
47
  export declare const TAUREN_UNIT_TYPE_ID: StandardUnitTypeId;
26
48
  export declare const WIND_RIDER_UNIT_TYPE_ID: StandardUnitTypeId;
27
49
  export declare const WITCH_DOCTOR_UNIT_TYPE_ID: StandardUnitTypeId;
50
+ export declare const ARCHER_UNIT_TYPE_ID: StandardUnitTypeId;
51
+ export declare const CHIMAERA_UNIT_TYPE_ID: StandardUnitTypeId;
52
+ export declare const DRUID_OF_THE_CLAW_UNIT_TYPE_ID: StandardUnitTypeId;
53
+ export declare const DRUID_OF_THE_TALON_UNIT_TYPE_ID: StandardUnitTypeId;
54
+ export declare const DRYAD_UNIT_TYPE_ID: StandardUnitTypeId;
55
+ export declare const FAERIE_DRAGON_UNIT_TYPE_ID: StandardUnitTypeId;
56
+ export declare const GLAIVE_THROWER_UNIT_TYPE_ID: StandardUnitTypeId;
57
+ export declare const HIPPOGRYPH_UNIT_TYPE_ID: StandardUnitTypeId;
58
+ export declare const HIPPOGRYPH_RIDER_UNIT_TYPE_ID: StandardUnitTypeId;
59
+ export declare const HUNTRESS_UNIT_TYPE_ID: StandardUnitTypeId;
60
+ export declare const MOUNTAIN_GIANT_THROWER_UNIT_TYPE_ID: StandardUnitTypeId;
61
+ export declare const WISP_UNIT_TYPE_ID: StandardUnitTypeId;
28
62
  export declare const DEMON_HUNTER_HERO_UNIT_TYPE_ID: StandardHeroUnitTypeId;
63
+ export declare const KEEPER_OF_THE_GROVE_HERO_UNIT_TYPE_ID: StandardHeroUnitTypeId;
64
+ export declare const MOON_PRIESTESS_HERO_UNIT_TYPE_ID: StandardHeroUnitTypeId;
65
+ export declare const WARDEN_HERO_UNIT_TYPE_ID: StandardHeroUnitTypeId;
29
66
  export declare const DEMON_HUNTER_DEMON_FORM_HERO_UNIT_TYPE_ID: StandardHeroUnitTypeId;
30
67
  export declare const ABOMINATION_UNIT_TYPE_ID: StandardUnitTypeId;
31
68
  export declare const GHOUL_UNIT_TYPE_ID: StandardUnitTypeId;
@@ -61,6 +98,7 @@ export declare const WENDIGO_UNIT_TYPE_ID: StandardUnitTypeId;
61
98
  export declare const WENDIGO_SHAMAN_UNIT_TYPE_ID: StandardUnitTypeId;
62
99
  export declare const WILDKIN_UNIT_TYPE_ID: StandardUnitTypeId;
63
100
  export declare const WRAITH_UNIT_TYPE_ID: StandardUnitTypeId;
101
+ export declare const GOBLIN_LAND_MINE_UNIT_TYPE_ID: StandardUnitTypeId;
64
102
  export declare const CIRCLE_OF_POWER_UNIT_TYPE_ID: StandardUnitTypeId;
65
103
  export declare const CIRCLE_OF_POWER_MEDIUM_UNIT_TYPE_ID: StandardUnitTypeId;
66
104
  export declare const CIRCLE_OF_POWER_LARGE_UNIT_TYPE_ID: StandardUnitTypeId;