warscript 0.0.1-dev.87bdb89 → 0.0.1-dev.8895725

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 (161) hide show
  1. package/attributes.d.ts +1 -0
  2. package/attributes.lua +9 -0
  3. package/core/types/frame.lua +71 -22
  4. package/core/types/handle.lua +6 -9
  5. package/core/types/item.d.ts +1 -0
  6. package/core/types/item.lua +1 -0
  7. package/core/types/player.d.ts +17 -1
  8. package/core/types/player.lua +70 -24
  9. package/core/types/playerCamera.d.ts +2 -0
  10. package/core/types/playerCamera.lua +123 -5
  11. package/core/types/sound.lua +1 -1
  12. package/core/types/tileCell.d.ts +11 -1
  13. package/core/types/tileCell.lua +97 -0
  14. package/core/types/timer.d.ts +3 -1
  15. package/core/types/timer.lua +27 -2
  16. package/decl/native.d.ts +6 -4
  17. package/destroyable.d.ts +1 -0
  18. package/destroyable.lua +9 -0
  19. package/engine/behavior.d.ts +14 -1
  20. package/engine/behavior.lua +230 -70
  21. package/engine/behaviour/ability/apply-buff.lua +5 -5
  22. package/engine/behaviour/ability/damage.d.ts +3 -0
  23. package/engine/behaviour/ability/damage.lua +8 -2
  24. package/engine/behaviour/ability/emulate-impact.d.ts +1 -1
  25. package/engine/behaviour/ability/emulate-impact.lua +7 -5
  26. package/engine/behaviour/ability/remove-buffs.d.ts +9 -0
  27. package/engine/behaviour/ability/remove-buffs.lua +21 -0
  28. package/engine/behaviour/ability/restore-mana.d.ts +1 -1
  29. package/engine/behaviour/ability/restore-mana.lua +6 -6
  30. package/engine/behaviour/ability.d.ts +11 -6
  31. package/engine/behaviour/ability.lua +37 -16
  32. package/engine/behaviour/unit/stun-immunity.d.ts +12 -6
  33. package/engine/behaviour/unit/stun-immunity.lua +57 -31
  34. package/engine/behaviour/unit.d.ts +26 -5
  35. package/engine/behaviour/unit.lua +180 -27
  36. package/engine/buff.d.ts +67 -22
  37. package/engine/buff.lua +371 -182
  38. package/engine/internal/ability.d.ts +3 -1
  39. package/engine/internal/ability.lua +49 -26
  40. package/engine/internal/item/ability.lua +51 -1
  41. package/engine/internal/item/fields.d.ts +12 -0
  42. package/engine/internal/item/fields.lua +33 -0
  43. package/engine/internal/item+owner.lua +12 -6
  44. package/engine/internal/item.d.ts +11 -14
  45. package/engine/internal/item.lua +81 -70
  46. package/engine/internal/mechanics/cast-ability.lua +6 -3
  47. package/engine/internal/misc/frame-coordinates.lua +21 -0
  48. package/engine/internal/misc/get-terrain-z.d.ts +2 -0
  49. package/engine/internal/misc/get-terrain-z.lua +11 -0
  50. package/engine/internal/misc/player-local-handle.d.ts +2 -0
  51. package/engine/internal/misc/player-local-handle.lua +5 -0
  52. package/engine/internal/object-data/armor-bonus.d.ts +2 -0
  53. package/engine/internal/object-data/attribute-bonus.lua +2 -2
  54. package/engine/internal/object-data/health-bonus.d.ts +2 -0
  55. package/engine/internal/object-data/health-bonus.lua +16 -0
  56. package/engine/internal/object-data/mana-bonus.d.ts +2 -0
  57. package/engine/internal/object-data/mana-bonus.lua +16 -0
  58. package/engine/internal/object-data/mana-regeneration-rate-increase-factor.d.ts +2 -0
  59. package/engine/internal/object-data/mana-regeneration-rate-increase-factor.lua +16 -0
  60. package/engine/internal/unit/ability.d.ts +35 -5
  61. package/engine/internal/unit/ability.lua +96 -21
  62. package/engine/internal/unit/attributes.d.ts +17 -0
  63. package/engine/internal/unit/attributes.lua +46 -0
  64. package/engine/internal/unit/bonus.d.ts +6 -0
  65. package/engine/internal/unit/bonus.lua +33 -3
  66. package/engine/internal/unit/fly-height.d.ts +7 -0
  67. package/engine/internal/unit/fly-height.lua +20 -0
  68. package/engine/internal/unit/interrupts.d.ts +12 -0
  69. package/engine/internal/unit/interrupts.lua +28 -0
  70. package/engine/internal/unit/main-selected.lua +12 -27
  71. package/engine/internal/unit/order.d.ts +20 -0
  72. package/engine/internal/unit/order.lua +136 -0
  73. package/engine/internal/unit/range-event.d.ts +12 -0
  74. package/engine/internal/unit/range-event.lua +90 -0
  75. package/engine/internal/unit/scale.d.ts +7 -0
  76. package/engine/internal/unit/scale.lua +20 -0
  77. package/engine/internal/unit+ability.lua +10 -1
  78. package/engine/internal/unit+bonus.lua +3 -3
  79. package/engine/internal/unit-missile-launch.lua +52 -14
  80. package/engine/internal/unit.d.ts +20 -24
  81. package/engine/internal/unit.lua +232 -240
  82. package/engine/local-client.d.ts +7 -0
  83. package/engine/local-client.lua +86 -1
  84. package/engine/object-data/auxiliary/armor-type.d.ts +11 -0
  85. package/engine/object-data/auxiliary/armor-type.lua +46 -0
  86. package/engine/object-data/auxiliary/health-regeneration-type.d.ts +8 -0
  87. package/engine/object-data/auxiliary/health-regeneration-type.lua +2 -0
  88. package/engine/object-data/auxiliary/unit-attribute.lua +1 -1
  89. package/engine/object-data/entry/ability-type/{armor-increase.d.ts → armor-bonus.d.ts} +3 -3
  90. package/engine/object-data/entry/ability-type/{armor-increase.lua → armor-bonus.lua} +9 -9
  91. package/engine/object-data/entry/ability-type/health-bonus.d.ts +8 -0
  92. package/engine/object-data/entry/ability-type/health-bonus.lua +26 -0
  93. package/engine/object-data/entry/ability-type/mana-bonus.d.ts +8 -0
  94. package/engine/object-data/entry/ability-type/mana-bonus.lua +26 -0
  95. package/engine/object-data/entry/ability-type/mana-regeneration.d.ts +8 -0
  96. package/engine/object-data/entry/ability-type/mana-regeneration.lua +26 -0
  97. package/engine/object-data/entry/ability-type/reincarnation.d.ts +8 -0
  98. package/engine/object-data/entry/ability-type/reincarnation.lua +26 -0
  99. package/engine/object-data/entry/ability-type.d.ts +2 -0
  100. package/engine/object-data/entry/ability-type.lua +89 -8
  101. package/engine/object-data/entry/buff-type/applicable.lua +113 -109
  102. package/engine/object-data/entry/destructible-type.d.ts +27 -1
  103. package/engine/object-data/entry/destructible-type.lua +155 -0
  104. package/engine/object-data/entry/unit-type.d.ts +15 -2
  105. package/engine/object-data/entry/unit-type.lua +135 -33
  106. package/engine/object-field/ability.d.ts +3 -3
  107. package/engine/object-field/ability.lua +9 -8
  108. package/engine/object-field/item.d.ts +22 -0
  109. package/engine/object-field/item.lua +118 -0
  110. package/engine/object-field/unit.d.ts +31 -5
  111. package/engine/object-field/unit.lua +95 -0
  112. package/engine/object-field.d.ts +14 -4
  113. package/engine/object-field.lua +282 -134
  114. package/engine/random.d.ts +10 -0
  115. package/engine/random.lua +21 -0
  116. package/engine/standard/fields/ability.d.ts +2 -2
  117. package/engine/standard/fields/ability.lua +2 -2
  118. package/engine/standard/fields/item.d.ts +4 -0
  119. package/engine/standard/fields/item.lua +6 -0
  120. package/engine/standard/fields/unit.d.ts +12 -0
  121. package/engine/standard/fields/unit.lua +20 -0
  122. package/engine/synchronization.d.ts +11 -0
  123. package/engine/synchronization.lua +77 -0
  124. package/engine/text-tag.d.ts +26 -3
  125. package/engine/text-tag.lua +217 -11
  126. package/engine/unit.d.ts +6 -0
  127. package/engine/unit.lua +6 -0
  128. package/lualib_bundle.lua +1 -1
  129. package/math.d.ts +2 -0
  130. package/math.lua +14 -0
  131. package/net/socket.lua +1 -1
  132. package/objutil/buff.lua +10 -8
  133. package/objutil/object.lua +1 -1
  134. package/operation.lua +1 -4
  135. package/package.json +5 -5
  136. package/patch-lua.lua +15 -0
  137. package/patch-lualib.lua +1 -1
  138. package/utility/arrays.d.ts +1 -0
  139. package/utility/arrays.lua +8 -0
  140. package/utility/callback-array.d.ts +17 -0
  141. package/utility/callback-array.lua +61 -0
  142. package/utility/functions.d.ts +7 -0
  143. package/utility/functions.lua +12 -0
  144. package/utility/linked-map.d.ts +35 -0
  145. package/utility/linked-map.lua +107 -0
  146. package/utility/linked-set.d.ts +4 -1
  147. package/utility/linked-set.lua +46 -1
  148. package/utility/lua-maps.d.ts +12 -2
  149. package/utility/lua-maps.lua +37 -2
  150. package/utility/lua-sets.d.ts +1 -0
  151. package/utility/lua-sets.lua +4 -0
  152. package/utility/records.lua +20 -1
  153. package/utility/types.d.ts +3 -0
  154. package/utility/unordered-map.d.ts +27 -0
  155. package/utility/unordered-map.lua +99 -0
  156. package/core/types/order.d.ts +0 -26
  157. package/core/types/order.lua +0 -65
  158. /package/engine/internal/{object-data/armor-increase.d.ts → misc/frame-coordinates.d.ts} +0 -0
  159. /package/engine/internal/object-data/{armor-increase.lua → armor-bonus.lua} +0 -0
  160. /package/engine/object-data/entry/ability-type/{attribute-increase.d.ts → attribute-bonus.d.ts} +0 -0
  161. /package/engine/object-data/entry/ability-type/{attribute-increase.lua → attribute-bonus.lua} +0 -0
@@ -0,0 +1,99 @@
1
+ local ____lualib = require("lualib_bundle")
2
+ local __TS__Class = ____lualib.__TS__Class
3
+ local __TS__SetDescriptor = ____lualib.__TS__SetDescriptor
4
+ local __TS__ClassExtends = ____lualib.__TS__ClassExtends
5
+ local __TS__New = ____lualib.__TS__New
6
+ local ____exports = {}
7
+ local ____exception = require("exception")
8
+ local UnsupportedOperationException = ____exception.UnsupportedOperationException
9
+ ____exports.UnorderedMap = __TS__Class()
10
+ local UnorderedMap = ____exports.UnorderedMap
11
+ UnorderedMap.name = "UnorderedMap"
12
+ function UnorderedMap.prototype.____constructor(self)
13
+ self.v = {}
14
+ self.s = 0
15
+ end
16
+ function UnorderedMap.prototype.get(self, key)
17
+ return self.v[key]
18
+ end
19
+ function UnorderedMap.prototype.getOrPut(self, key, defaultValue)
20
+ local value = self.v[key]
21
+ if value ~= nil then
22
+ return value
23
+ end
24
+ value = defaultValue()
25
+ if value ~= nil then
26
+ self.v[key] = value
27
+ self.s = self.s + 1
28
+ end
29
+ return value
30
+ end
31
+ function UnorderedMap.prototype.put(self, key, value)
32
+ local has = self.v[key] ~= nil
33
+ self.v[key] = value
34
+ if value ~= nil and not has then
35
+ self.s = self.s + 1
36
+ elseif value == nil and has then
37
+ self.s = self.s - 1
38
+ end
39
+ end
40
+ function UnorderedMap.prototype.remove(self, key)
41
+ if self.v[key] ~= nil then
42
+ self.v[key] = nil
43
+ self.s = self.s - 1
44
+ return true
45
+ end
46
+ return false
47
+ end
48
+ function UnorderedMap.prototype.contains(self, key)
49
+ return self.v[key] ~= nil
50
+ end
51
+ function UnorderedMap.prototype.__len(self)
52
+ return self.s
53
+ end
54
+ function UnorderedMap.prototype.__pairs(self)
55
+ return pairs(self.v)
56
+ end
57
+ __TS__SetDescriptor(
58
+ UnorderedMap.prototype,
59
+ "size",
60
+ {get = function(self)
61
+ return self.s
62
+ end},
63
+ true
64
+ )
65
+ local EmptyUnorderedMap = __TS__Class()
66
+ EmptyUnorderedMap.name = "EmptyUnorderedMap"
67
+ __TS__ClassExtends(EmptyUnorderedMap, ____exports.UnorderedMap)
68
+ function EmptyUnorderedMap.prototype.getOrPut(self)
69
+ error(
70
+ __TS__New(UnsupportedOperationException),
71
+ 0
72
+ )
73
+ end
74
+ function EmptyUnorderedMap.prototype.put(self)
75
+ error(
76
+ __TS__New(UnsupportedOperationException),
77
+ 0
78
+ )
79
+ end
80
+ function EmptyUnorderedMap.prototype.remove(self)
81
+ error(
82
+ __TS__New(UnsupportedOperationException),
83
+ 0
84
+ )
85
+ end
86
+ function EmptyUnorderedMap.prototype.__len(self)
87
+ return 0
88
+ end
89
+ function EmptyUnorderedMap.prototype.__pairs(self)
90
+ return pairs(self.v)
91
+ end
92
+ local EMPTY_UNORDERED_MAP = __TS__New(EmptyUnorderedMap)
93
+ ____exports.emptyUnorderedMap = function()
94
+ return EMPTY_UNORDERED_MAP
95
+ end
96
+ ____exports.mutableUnorderedMap = function()
97
+ return __TS__New(____exports.UnorderedMap)
98
+ end
99
+ return ____exports
@@ -1,26 +0,0 @@
1
- /** @noSelfInFile */
2
- import { Unit } from "./unit";
3
- import { Item } from "./item";
4
- import { Destructable } from "./destructable";
5
- export type Order = {
6
- id: number;
7
- startX: number;
8
- startY: number;
9
- issueTime: number;
10
- } & ({
11
- type: "immediate";
12
- } | {
13
- type: "point";
14
- targetX: number;
15
- targetY: number;
16
- } | {
17
- type: "target";
18
- target: Unit | Item | Destructable;
19
- });
20
- declare module "../../engine/internal/unit" {
21
- interface Unit {
22
- readonly currentOrder: Order;
23
- readonly lastOrder: Order;
24
- issueOrder(order: Order): void;
25
- }
26
- }
@@ -1,65 +0,0 @@
1
- local ____lualib = require("lualib_bundle")
2
- local __TS__ObjectDefineProperty = ____lualib.__TS__ObjectDefineProperty
3
- local ____exports = {}
4
- local ____unit = require("core.types.unit")
5
- local Unit = ____unit.Unit
6
- local ____game = require("core.game")
7
- local elapsedTime = ____game.elapsedTime
8
- local getUnitCurrentOrder = GetUnitCurrentOrder
9
- local orders = setmetatable({}, {__mode = "k"})
10
- Unit.onImmediateOrder:addListener(function(unit, orderId)
11
- orders[unit] = {
12
- id = orderId,
13
- startX = unit.x,
14
- startY = unit.y,
15
- issueTime = elapsedTime(),
16
- type = "immediate"
17
- }
18
- end)
19
- Unit.onPointOrder:addListener(function(unit, orderId, x, y)
20
- orders[unit] = {
21
- id = orderId,
22
- startX = unit.x,
23
- startY = unit.y,
24
- issueTime = elapsedTime(),
25
- type = "point",
26
- targetX = x,
27
- targetY = y
28
- }
29
- end)
30
- Unit.onTargetOrder:addListener(function(unit, orderId, target)
31
- orders[unit] = {
32
- id = orderId,
33
- startX = unit.x,
34
- startY = unit.y,
35
- issueTime = elapsedTime(),
36
- type = "target",
37
- target = target
38
- }
39
- end)
40
- __TS__ObjectDefineProperty(
41
- Unit.prototype,
42
- "currentOrder",
43
- {get = function(self)
44
- local currentOrderId = getUnitCurrentOrder(self.handle)
45
- local lastOrder = orders[self]
46
- return lastOrder and (lastOrder.id == currentOrderId or currentOrderId == orderId("patrolAI") and lastOrder.id == orderId("patrol")) and lastOrder or ({id = 0, type = "immediate"})
47
- end}
48
- )
49
- __TS__ObjectDefineProperty(
50
- Unit.prototype,
51
- "lastOrder",
52
- {get = function(self)
53
- return orders[self] or ({id = 0, type = "immediate"})
54
- end}
55
- )
56
- Unit.prototype.issueOrder = function(self, order)
57
- if order.type == "immediate" then
58
- IssueImmediateOrderById(self.handle, order.id)
59
- elseif order.type == "point" then
60
- IssuePointOrderById(self.handle, order.id, order.targetX, order.targetY)
61
- else
62
- IssueTargetOrderById(self.handle, order.id, order.target.handle)
63
- end
64
- end
65
- return ____exports