warscript 0.0.1-dev.9ee7706 → 0.0.1-dev.9f30788

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 (117) hide show
  1. package/attributes.d.ts +5 -0
  2. package/attributes.lua +8 -1
  3. package/core/types/effect.d.ts +1 -3
  4. package/core/types/effect.lua +26 -29
  5. package/core/types/frame.lua +24 -21
  6. package/core/types/player.lua +3 -1
  7. package/core/types/playerCamera.d.ts +2 -0
  8. package/core/types/playerCamera.lua +123 -5
  9. package/core/types/sound.lua +5 -0
  10. package/core/types/tileCell.d.ts +9 -0
  11. package/core/types/tileCell.lua +92 -0
  12. package/core/types/timer.d.ts +9 -8
  13. package/core/types/timer.lua +45 -23
  14. package/decl/native.d.ts +846 -790
  15. package/engine/behavior.d.ts +5 -0
  16. package/engine/behavior.lua +106 -27
  17. package/engine/behaviour/ability/apply-buff.lua +1 -1
  18. package/engine/behaviour/ability/damage.d.ts +6 -3
  19. package/engine/behaviour/ability/damage.lua +24 -36
  20. package/engine/behaviour/ability/emulate-impact.d.ts +1 -1
  21. package/engine/behaviour/ability/emulate-impact.lua +18 -3
  22. package/engine/behaviour/ability/restore-mana.d.ts +1 -1
  23. package/engine/behaviour/ability/restore-mana.lua +6 -6
  24. package/engine/behaviour/ability.d.ts +4 -1
  25. package/engine/behaviour/ability.lua +14 -21
  26. package/engine/behaviour/unit/stun-immunity.d.ts +7 -3
  27. package/engine/behaviour/unit/stun-immunity.lua +52 -27
  28. package/engine/behaviour/unit.d.ts +33 -1
  29. package/engine/behaviour/unit.lua +190 -4
  30. package/engine/buff.d.ts +2 -4
  31. package/engine/buff.lua +68 -83
  32. package/engine/internal/ability.d.ts +7 -1
  33. package/engine/internal/ability.lua +49 -9
  34. package/engine/internal/item/ability.lua +63 -11
  35. package/engine/internal/item+owner.lua +12 -6
  36. package/engine/internal/item.d.ts +18 -17
  37. package/engine/internal/item.lua +135 -49
  38. package/engine/internal/misc/damage-metadata-by-target.d.ts +2 -0
  39. package/engine/internal/misc/damage-metadata-by-target.lua +5 -0
  40. package/engine/internal/misc/frame-coordinates.d.ts +2 -0
  41. package/engine/internal/misc/frame-coordinates.lua +21 -0
  42. package/engine/internal/misc/get-terrain-z.d.ts +2 -0
  43. package/engine/internal/misc/get-terrain-z.lua +11 -0
  44. package/engine/internal/misc/player-local-handle.d.ts +2 -0
  45. package/engine/internal/misc/player-local-handle.lua +5 -0
  46. package/engine/internal/unit/ability.d.ts +35 -0
  47. package/engine/internal/unit/ability.lua +98 -9
  48. package/engine/internal/unit/allowed-targets.d.ts +1 -1
  49. package/engine/internal/unit/allowed-targets.lua +9 -1
  50. package/engine/internal/unit/order.d.ts +20 -0
  51. package/engine/internal/unit/order.lua +136 -0
  52. package/engine/internal/unit+ability.lua +10 -1
  53. package/engine/internal/unit+damage.d.ts +2 -11
  54. package/engine/internal/unit+damage.lua +10 -14
  55. package/engine/internal/unit+spellSteal.lua +1 -2
  56. package/engine/internal/unit-missile-launch.lua +45 -8
  57. package/engine/internal/unit.d.ts +26 -9
  58. package/engine/internal/unit.lua +251 -110
  59. package/engine/object-data/auxiliary/armor-type.d.ts +11 -0
  60. package/engine/object-data/auxiliary/armor-type.lua +46 -0
  61. package/engine/object-data/auxiliary/attachment-preset.d.ts +7 -2
  62. package/engine/object-data/auxiliary/attachment-preset.lua +4 -3
  63. package/engine/object-data/auxiliary/attack-type.d.ts +7 -8
  64. package/engine/object-data/auxiliary/attack-type.lua +42 -0
  65. package/engine/object-data/auxiliary/movement-type.d.ts +7 -7
  66. package/engine/object-data/auxiliary/movement-type.lua +22 -0
  67. package/engine/object-data/auxiliary/unit-attribute.d.ts +6 -0
  68. package/engine/object-data/auxiliary/unit-attribute.lua +9 -0
  69. package/engine/object-data/entry/ability-type/berserk.d.ts +2 -0
  70. package/engine/object-data/entry/ability-type/berserk.lua +13 -0
  71. package/engine/object-data/entry/ability-type/permanent-invisibility.d.ts +8 -0
  72. package/engine/object-data/entry/ability-type/permanent-invisibility.lua +26 -0
  73. package/engine/object-data/entry/ability-type/phase-shift.d.ts +10 -0
  74. package/engine/object-data/entry/ability-type/phase-shift.lua +39 -0
  75. package/engine/object-data/entry/ability-type/slow-poison.d.ts +10 -0
  76. package/engine/object-data/entry/ability-type/slow-poison.lua +58 -0
  77. package/engine/object-data/entry/ability-type.d.ts +11 -11
  78. package/engine/object-data/entry/ability-type.lua +31 -9
  79. package/engine/object-data/entry/buff-type/applicable.lua +5 -0
  80. package/engine/object-data/entry/buff-type.d.ts +5 -11
  81. package/engine/object-data/entry/buff-type.lua +11 -27
  82. package/engine/object-data/entry/unit-type.d.ts +13 -4
  83. package/engine/object-data/entry/unit-type.lua +153 -85
  84. package/engine/object-field/ability.d.ts +4 -4
  85. package/engine/object-field/ability.lua +7 -6
  86. package/engine/object-field/unit.d.ts +57 -3
  87. package/engine/object-field/unit.lua +207 -7
  88. package/engine/object-field.d.ts +17 -6
  89. package/engine/object-field.lua +188 -92
  90. package/engine/random.d.ts +9 -0
  91. package/engine/random.lua +13 -0
  92. package/engine/standard/entries/buff-type.d.ts +3 -0
  93. package/engine/standard/entries/buff-type.lua +3 -0
  94. package/engine/standard/fields/unit.d.ts +4 -0
  95. package/engine/standard/fields/unit.lua +7 -0
  96. package/engine/text-tag.d.ts +36 -2
  97. package/engine/text-tag.lua +249 -10
  98. package/engine/unit.d.ts +1 -0
  99. package/engine/unit.lua +1 -0
  100. package/objutil/buff.lua +2 -3
  101. package/package.json +2 -2
  102. package/patch-lualib.lua +1 -1
  103. package/utility/arrays.d.ts +2 -0
  104. package/utility/arrays.lua +11 -0
  105. package/utility/callback-array.d.ts +17 -0
  106. package/utility/callback-array.lua +61 -0
  107. package/utility/functions.d.ts +8 -0
  108. package/utility/functions.lua +13 -0
  109. package/utility/linked-set.d.ts +1 -0
  110. package/utility/linked-set.lua +3 -0
  111. package/utility/lua-maps.d.ts +15 -2
  112. package/utility/lua-maps.lua +53 -2
  113. package/utility/lua-sets.d.ts +2 -0
  114. package/utility/lua-sets.lua +7 -0
  115. package/utility/types.d.ts +3 -0
  116. package/core/types/order.d.ts +0 -25
  117. package/core/types/order.lua +0 -55
@@ -1,25 +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
- } & ({
10
- type: "immediate";
11
- } | {
12
- type: "point";
13
- targetX: number;
14
- targetY: number;
15
- } | {
16
- type: "target";
17
- target: Unit | Item | Destructable;
18
- });
19
- declare module "../../engine/internal/unit" {
20
- interface Unit {
21
- readonly currentOrder: Order;
22
- readonly lastOrder: Order;
23
- issueOrder(order: Order): void;
24
- }
25
- }
@@ -1,55 +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 getUnitCurrentOrder = GetUnitCurrentOrder
7
- local orders = setmetatable({}, {__mode = "k"})
8
- Unit.onImmediateOrder:addListener(function(unit, orderId)
9
- orders[unit] = {id = orderId, startX = unit.x, startY = unit.y, type = "immediate"}
10
- end)
11
- Unit.onPointOrder:addListener(function(unit, orderId, x, y)
12
- orders[unit] = {
13
- id = orderId,
14
- startX = unit.x,
15
- startY = unit.y,
16
- type = "point",
17
- targetX = x,
18
- targetY = y
19
- }
20
- end)
21
- Unit.onTargetOrder:addListener(function(unit, orderId, target)
22
- orders[unit] = {
23
- id = orderId,
24
- startX = unit.x,
25
- startY = unit.y,
26
- type = "target",
27
- target = target
28
- }
29
- end)
30
- __TS__ObjectDefineProperty(
31
- Unit.prototype,
32
- "currentOrder",
33
- {get = function(self)
34
- local currentOrderId = getUnitCurrentOrder(self.handle)
35
- local lastOrder = orders[self]
36
- return lastOrder and (lastOrder.id == currentOrderId or currentOrderId == orderId("patrolAI") and lastOrder.id == orderId("patrol")) and lastOrder or ({id = 0, type = "immediate"})
37
- end}
38
- )
39
- __TS__ObjectDefineProperty(
40
- Unit.prototype,
41
- "lastOrder",
42
- {get = function(self)
43
- return orders[self] or ({id = 0, type = "immediate"})
44
- end}
45
- )
46
- Unit.prototype.issueOrder = function(self, order)
47
- if order.type == "immediate" then
48
- IssueImmediateOrderById(self.handle, order.id)
49
- elseif order.type == "point" then
50
- IssuePointOrderById(self.handle, order.id, order.targetX, order.targetY)
51
- else
52
- IssueTargetOrderById(self.handle, order.id, order.target.handle)
53
- end
54
- end
55
- return ____exports