isaacscript-common 30.4.1 → 30.4.3

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 (36) hide show
  1. package/dist/index.rollup.d.ts +35 -23
  2. package/dist/isaacscript-common.lua +57 -52
  3. package/dist/lualib_bundle.lua +15 -0
  4. package/dist/src/classes/features/callbackLogic/CustomGridEntities.d.ts +4 -4
  5. package/dist/src/classes/features/callbackLogic/CustomGridEntities.d.ts.map +1 -1
  6. package/dist/src/classes/features/callbackLogic/CustomGridEntities.lua +1 -1
  7. package/dist/src/classes/features/other/PressInput.d.ts.map +1 -1
  8. package/dist/src/classes/features/other/PressInput.lua +7 -8
  9. package/dist/src/classes/features/other/StageHistory.d.ts +2 -4
  10. package/dist/src/classes/features/other/StageHistory.d.ts.map +1 -1
  11. package/dist/src/classes/features/other/StageHistory.lua +3 -13
  12. package/dist/src/functions/levelGrid.d.ts +20 -13
  13. package/dist/src/functions/levelGrid.d.ts.map +1 -1
  14. package/dist/src/functions/levelGrid.lua +7 -5
  15. package/dist/src/functions/playerHealth.d.ts.map +1 -1
  16. package/dist/src/functions/playerHealth.lua +18 -23
  17. package/dist/src/functions/spawnCollectible.d.ts +4 -2
  18. package/dist/src/functions/spawnCollectible.d.ts.map +1 -1
  19. package/dist/src/functions/spawnCollectible.lua +5 -3
  20. package/dist/src/index.d.ts +1 -0
  21. package/dist/src/index.d.ts.map +1 -1
  22. package/dist/src/interfaces/StageHistoryEntry.d.ts +7 -0
  23. package/dist/src/interfaces/StageHistoryEntry.d.ts.map +1 -0
  24. package/dist/src/interfaces/StageHistoryEntry.lua +2 -0
  25. package/package.json +1 -1
  26. package/src/classes/features/callbackLogic/CustomGridEntities.ts +9 -5
  27. package/src/classes/features/other/PressInput.ts +10 -8
  28. package/src/classes/features/other/StageHistory.ts +8 -8
  29. package/src/functions/levelGrid.ts +45 -20
  30. package/src/functions/playerHealth.ts +23 -16
  31. package/src/functions/spawnCollectible.ts +5 -3
  32. package/src/index.ts +1 -0
  33. package/src/interfaces/StageHistoryEntry.ts +7 -0
  34. package/dist/src/indexLua.d.ts +0 -185
  35. package/dist/src/indexLua.d.ts.map +0 -1
  36. package/dist/src/indexLua.lua +0 -1114
@@ -5,14 +5,18 @@ import {
5
5
  PlayerType,
6
6
  TrinketType,
7
7
  } from "isaac-typescript-definitions";
8
- import { ACTIVE_SLOT_VALUES } from "../arrays/cachedEnumValues";
9
8
  import { MAX_PLAYER_HEART_CONTAINERS } from "../core/constants";
10
9
  import { HealthType } from "../enums/HealthType";
11
10
  import { PlayerHealth, SoulHeartType } from "../interfaces/PlayerHealth";
12
11
  import { countSetBits, getKBitOfN, getNumBitsOfN } from "./bitwise";
13
12
  import { getCharacterMaxHeartContainers } from "./characters";
14
13
  import { getTotalCharge } from "./charge";
15
- import { isCharacter, isKeeper, setActiveItem } from "./players";
14
+ import {
15
+ getActiveItemSlots,
16
+ isCharacter,
17
+ isKeeper,
18
+ setActiveItem,
19
+ } from "./players";
16
20
  import { repeat } from "./utils";
17
21
 
18
22
  export function addPlayerHealthType(
@@ -543,21 +547,24 @@ export function setPlayerHealth(
543
547
  const character = player.GetPlayerType();
544
548
  const subPlayer = player.GetSubPlayer();
545
549
 
546
- removeAllPlayerHealth(player);
547
-
548
- // Before we add any health, we have to take away Alabaster Box, if present.
549
- const alabasterBoxes: Array<[slot: ActiveSlot, totalCharge: int]> = [];
550
- if (player.HasCollectible(CollectibleType.ALABASTER_BOX)) {
551
- for (const activeSlot of ACTIVE_SLOT_VALUES) {
552
- const activeItem = player.GetActiveItem();
553
- if (activeItem === CollectibleType.ALABASTER_BOX) {
554
- const totalCharge = getTotalCharge(player, activeSlot);
555
- setActiveItem(player, CollectibleType.NULL, activeSlot);
556
- alabasterBoxes.push([activeSlot, totalCharge]);
557
- }
558
- }
550
+ // Before we add or remove any health, we have to take away Alabaster Box, if present. (Removing
551
+ // soul hearts from the player will remove Alabaster Box charges.)
552
+ const alabasterBoxDescriptions: Array<{
553
+ activeSlot: ActiveSlot;
554
+ totalCharge: int;
555
+ }> = [];
556
+ const alabasterBoxActiveSlots = getActiveItemSlots(
557
+ player,
558
+ CollectibleType.ALABASTER_BOX,
559
+ );
560
+ for (const activeSlot of alabasterBoxActiveSlots) {
561
+ const totalCharge = getTotalCharge(player, activeSlot);
562
+ setActiveItem(player, CollectibleType.NULL, activeSlot);
563
+ alabasterBoxDescriptions.push({ activeSlot, totalCharge });
559
564
  }
560
565
 
566
+ removeAllPlayerHealth(player);
567
+
561
568
  // Add the red heart containers.
562
569
  if (character === PlayerType.SOUL && subPlayer !== undefined) {
563
570
  // Adding health to The Soul is a special case.
@@ -649,7 +656,7 @@ export function setPlayerHealth(
649
656
  }
650
657
 
651
658
  // Re-add the Alabaster Box, if present.
652
- for (const [activeSlot, totalCharge] of alabasterBoxes) {
659
+ for (const { activeSlot, totalCharge } of alabasterBoxDescriptions) {
653
660
  setActiveItem(
654
661
  player,
655
662
  CollectibleType.ALABASTER_BOX,
@@ -77,8 +77,10 @@ export function spawnCollectibleUnsafe(
77
77
  * with `CollectibleType.NULL` will result in spawning a collectible with a random type from the
78
78
  * current room's item pool.
79
79
  *
80
- * Instead, this function arbitrarily spawns a collectible with `CollectibleType.SAD_ONION`, and
81
- * then converts it to an empty pedestal afterward.
80
+ * Instead, this function arbitrarily spawns a collectible with `CollectibleType.BROKEN_SHOVEL_1`,
81
+ * and then converts it to an empty pedestal afterward. (Broken Shovel is used instead of e.g. Sad
82
+ * Onion because it is a quest collectible and quest collectibles will prevent Damocles from
83
+ * duplicating the pedestal.)
82
84
  *
83
85
  * @param positionOrGridIndex The position or grid index to spawn the empty collectible at.
84
86
  * @param seedOrRNG The `Seed` or `RNG` object to use. If an `RNG` object is provided, the
@@ -89,7 +91,7 @@ export function spawnEmptyCollectible(
89
91
  seedOrRNG: Seed | RNG = getRandomSeed(),
90
92
  ): EntityPickup {
91
93
  const collectible = spawnCollectibleUnsafe(
92
- CollectibleType.SAD_ONION,
94
+ CollectibleType.BROKEN_SHOVEL_1,
93
95
  positionOrGridIndex,
94
96
  seedOrRNG,
95
97
  false,
package/src/index.ts CHANGED
@@ -135,6 +135,7 @@ export * from "./interfaces/PlayerHealth";
135
135
  export * from "./interfaces/PocketItemDescription";
136
136
  export * from "./interfaces/RoomDescription";
137
137
  export * from "./interfaces/SaveData";
138
+ export * from "./interfaces/StageHistoryEntry";
138
139
  export * from "./interfaces/StatTypeType";
139
140
  export * from "./interfaces/TrinketSituation";
140
141
  export * from "./interfaces/TSTLClassMetatable";
@@ -0,0 +1,7 @@
1
+ import { LevelStage, StageType } from "isaac-typescript-definitions";
2
+
3
+ /** This is used by the `StageHistory` feature. */
4
+ export interface StageHistoryEntry {
5
+ readonly stage: LevelStage;
6
+ readonly stageType: StageType;
7
+ }
@@ -1,185 +0,0 @@
1
- export * from "./classes/DefaultMap";
2
- export * from "./classes/ModFeature";
3
- export * from "./classes/ModUpgraded";
4
- export * from "./core/cachedClasses";
5
- export * from "./core/constants";
6
- export * from "./core/constantsFirstLast";
7
- export * from "./core/upgradeMod";
8
- export * from "./enums/AmbushType";
9
- export * from "./enums/CornerType";
10
- export * from "./enums/HealthType";
11
- export * from "./enums/ISCFeature";
12
- export * from "./enums/LadderSubTypeCustom";
13
- export * from "./enums/ModCallbackCustom";
14
- export * from "./enums/MysteriousPaperEffect";
15
- export * from "./enums/PocketItemType";
16
- export * from "./enums/RockAltType";
17
- export * from "./enums/SaveDataKey";
18
- export * from "./enums/SerializationType";
19
- export * from "./enums/SlotDestructionType";
20
- export * from "./enums/StatType";
21
- export * from "./functions/ambush";
22
- export * from "./functions/array";
23
- export * from "./functions/arrayLua";
24
- export * from "./functions/benchmark";
25
- export * from "./functions/bitSet128";
26
- export * from "./functions/bitwise";
27
- export * from "./functions/bombs";
28
- export * from "./functions/bosses";
29
- export * from "./functions/cards";
30
- export * from "./functions/challenges";
31
- export * from "./functions/characters";
32
- export * from "./functions/charge";
33
- export * from "./functions/chargeBar";
34
- export * from "./functions/collectibles";
35
- export * from "./functions/collectibleTag";
36
- export * from "./functions/color";
37
- export * from "./functions/console";
38
- export * from "./functions/curses";
39
- export * from "./functions/debugFunctions";
40
- export * from "./functions/decorators";
41
- export * from "./functions/deepCopy";
42
- export * from "./functions/deepCopyTests";
43
- export * from "./functions/dimensions";
44
- export * from "./functions/direction";
45
- export * from "./functions/doors";
46
- export * from "./functions/easing";
47
- export * from "./functions/effects";
48
- export * from "./functions/emptyRoom";
49
- export * from "./functions/entities";
50
- export * from "./functions/entitiesSpecific";
51
- export * from "./functions/entityTypes";
52
- export * from "./functions/enums";
53
- export * from "./functions/familiars";
54
- export * from "./functions/flag";
55
- export * from "./functions/globals";
56
- export * from "./functions/gridEntities";
57
- export * from "./functions/gridEntitiesSpecific";
58
- export * from "./functions/gridIndex";
59
- export * from "./functions/hex";
60
- export * from "./functions/initArray";
61
- export * from "./functions/input";
62
- export * from "./functions/isaacAPIClass";
63
- export * from "./functions/itemPool";
64
- export * from "./functions/jsonHelpers";
65
- export * from "./functions/jsonRoom";
66
- export * from "./functions/kColor";
67
- export * from "./functions/language";
68
- export * from "./functions/level";
69
- export * from "./functions/levelGrid";
70
- export * from "./functions/log";
71
- export * from "./functions/logEntities";
72
- export * from "./functions/logMisc";
73
- export * from "./functions/map";
74
- export * from "./functions/math";
75
- export * from "./functions/merge";
76
- export * from "./functions/mergeTests";
77
- export * from "./functions/minimap";
78
- export * from "./functions/modFeatures";
79
- export * from "./functions/nextStage";
80
- export * from "./functions/npcs";
81
- export * from "./functions/pickups";
82
- export * from "./functions/pickupsSpecific";
83
- export * from "./functions/pickupVariants";
84
- export * from "./functions/pills";
85
- export * from "./functions/playerCenter";
86
- export * from "./functions/playerDataStructures";
87
- export * from "./functions/playerHealth";
88
- export * from "./functions/playerIndex";
89
- export * from "./functions/players";
90
- export * from "./functions/playerStats";
91
- export * from "./functions/pocketItems";
92
- export * from "./functions/positionVelocity";
93
- export * from "./functions/pressurePlate";
94
- export * from "./functions/projectiles";
95
- export * from "./functions/random";
96
- export * from "./functions/readOnly";
97
- export * from "./functions/revive";
98
- export * from "./functions/rng";
99
- export * from "./functions/rockAlt";
100
- export * from "./functions/roomData";
101
- export * from "./functions/roomGrid";
102
- export * from "./functions/rooms";
103
- export * from "./functions/roomShape";
104
- export * from "./functions/roomShapeWalls";
105
- export * from "./functions/roomTransition";
106
- export * from "./functions/run";
107
- export * from "./functions/seeds";
108
- export * from "./functions/serialization";
109
- export * from "./functions/set";
110
- export * from "./functions/slots";
111
- export * from "./functions/sort";
112
- export * from "./functions/sound";
113
- export * from "./functions/spawnCollectible";
114
- export * from "./functions/sprites";
115
- export * from "./functions/stage";
116
- export * from "./functions/stats";
117
- export * from "./functions/string";
118
- export * from "./functions/table";
119
- export * from "./functions/tears";
120
- export * from "./functions/transformations";
121
- export * from "./functions/trinketGive";
122
- export * from "./functions/trinkets";
123
- export * from "./functions/tstlClass";
124
- export * from "./functions/types";
125
- export * from "./functions/ui";
126
- export * from "./functions/utils";
127
- export * from "./functions/vector";
128
- export * from "./functions/weighted";
129
- export * from "./interfaces/ChargeBarSprites";
130
- export * from "./interfaces/Corner";
131
- export * from "./interfaces/CustomStageTSConfig";
132
- export * from "./interfaces/GridEntityCustomData";
133
- export * from "./interfaces/JSONRoomsFile";
134
- export * from "./interfaces/PlayerHealth";
135
- export * from "./interfaces/PocketItemDescription";
136
- export * from "./interfaces/RoomDescription";
137
- export * from "./interfaces/SaveData";
138
- export * from "./interfaces/StatTypeType";
139
- export * from "./interfaces/TrinketSituation";
140
- export * from "./interfaces/TSTLClassMetatable";
141
- export * from "./maps/cardNameToTypeMap";
142
- export * from "./maps/characterNameToTypeMap";
143
- export * from "./maps/pillNameToEffectMap";
144
- export * from "./maps/roomNameToTypeMap";
145
- export * from "./maps/transformationNameToPlayerFormMap";
146
- export * from "./objects/colors";
147
- export * from "./objects/kColors";
148
- export * from "./types/AllButFirst";
149
- export * from "./types/AllButLast";
150
- export * from "./types/AnyClass";
151
- export * from "./types/AnyEntity";
152
- export * from "./types/AnyFunction";
153
- export * from "./types/AnyGridEntity";
154
- export * from "./types/ConversionHeartSubType";
155
- export * from "./types/Decrement";
156
- export * from "./types/EntityID";
157
- export * from "./types/FunctionTuple";
158
- export * from "./types/GridEntityID";
159
- export * from "./types/HasFunction";
160
- export * from "./types/Immutable";
161
- export * from "./types/Increment";
162
- export * from "./types/LowercaseKeys";
163
- export * from "./types/NaturalNumbersLessThan";
164
- export * from "./types/NaturalNumbersLessThanOrEqualTo";
165
- export * from "./types/PickingUpItem";
166
- export * from "./types/PickupIndex";
167
- export * from "./types/PlayerIndex";
168
- export * from "./types/PossibleStatType";
169
- export * from "./types/PublicInterface";
170
- export * from "./types/Range";
171
- export * from "./types/ReadonlyMap";
172
- export * from "./types/ReadonlySet";
173
- export * from "./types/StartsWithLowercase";
174
- export * from "./types/StartsWithUppercase";
175
- export * from "./types/TSTLClass";
176
- export * from "./types/Tuple";
177
- export * from "./types/TupleToIntersection";
178
- export * from "./types/TupleToUnion";
179
- export * from "./types/TupleWithMaxLength";
180
- export * from "./types/UnionToIntersection";
181
- export * from "./types/UppercaseKeys";
182
- export * from "./types/WeightedArray";
183
- export * from "./types/Writable";
184
- export * from "isaac-typescript-definitions";
185
- //# sourceMappingURL=indexLua.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"indexLua.d.ts","sourceRoot":"","sources":["../../../../../packages/isaacscript-common/src/indexLua.ts"],"names":[],"mappings":"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"}