warscript 0.0.1-dev.32c305a → 0.0.1-dev.3324599

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