@drincs/pixi-vn 0.5.0 → 0.5.2

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 (67) hide show
  1. package/dist/classes/CharacterBaseModel.js +6 -6
  2. package/dist/classes/CharacterBaseModel.js.map +1 -1
  3. package/dist/classes/CharacterBaseModel.mjs +6 -6
  4. package/dist/classes/CharacterBaseModel.mjs.map +1 -1
  5. package/dist/classes/ChoiceMenuOption.d.mts +17 -4
  6. package/dist/classes/ChoiceMenuOption.d.ts +17 -4
  7. package/dist/classes/ChoiceMenuOption.js +10 -1
  8. package/dist/classes/ChoiceMenuOption.js.map +1 -1
  9. package/dist/classes/ChoiceMenuOption.mjs +10 -1
  10. package/dist/classes/ChoiceMenuOption.mjs.map +1 -1
  11. package/dist/classes/StoredClassModel.js.map +1 -1
  12. package/dist/classes/StoredClassModel.mjs.map +1 -1
  13. package/dist/classes/index.js +6 -6
  14. package/dist/classes/index.js.map +1 -1
  15. package/dist/classes/index.mjs +6 -6
  16. package/dist/classes/index.mjs.map +1 -1
  17. package/dist/classes/ticker/TickerFadeAlpha.js.map +1 -1
  18. package/dist/classes/ticker/TickerFadeAlpha.mjs.map +1 -1
  19. package/dist/classes/ticker/TickerMove.js.map +1 -1
  20. package/dist/classes/ticker/TickerMove.mjs.map +1 -1
  21. package/dist/classes/ticker/TickerRotate.js.map +1 -1
  22. package/dist/classes/ticker/TickerRotate.mjs.map +1 -1
  23. package/dist/classes/ticker/index.js.map +1 -1
  24. package/dist/classes/ticker/index.mjs.map +1 -1
  25. package/dist/constants.d.mts +1 -1
  26. package/dist/constants.d.ts +1 -1
  27. package/dist/constants.js +1 -1
  28. package/dist/constants.js.map +1 -1
  29. package/dist/constants.mjs +1 -1
  30. package/dist/constants.mjs.map +1 -1
  31. package/dist/functions/DialogueUtility.js +47 -17
  32. package/dist/functions/DialogueUtility.js.map +1 -1
  33. package/dist/functions/DialogueUtility.mjs +47 -17
  34. package/dist/functions/DialogueUtility.mjs.map +1 -1
  35. package/dist/functions/FlagsUtility.js.map +1 -1
  36. package/dist/functions/FlagsUtility.mjs.map +1 -1
  37. package/dist/functions/GameUtility.js.map +1 -1
  38. package/dist/functions/GameUtility.mjs.map +1 -1
  39. package/dist/functions/ImageUtility.js.map +1 -1
  40. package/dist/functions/ImageUtility.mjs.map +1 -1
  41. package/dist/functions/SavesUtility.js +25 -7
  42. package/dist/functions/SavesUtility.js.map +1 -1
  43. package/dist/functions/SavesUtility.mjs +25 -7
  44. package/dist/functions/SavesUtility.mjs.map +1 -1
  45. package/dist/functions/index.js +48 -18
  46. package/dist/functions/index.js.map +1 -1
  47. package/dist/functions/index.mjs +48 -18
  48. package/dist/functions/index.mjs.map +1 -1
  49. package/dist/index.js +60 -30
  50. package/dist/index.js.map +1 -1
  51. package/dist/index.mjs +60 -30
  52. package/dist/index.mjs.map +1 -1
  53. package/dist/interface/IDialogueHistory.d.mts +4 -4
  54. package/dist/interface/IDialogueHistory.d.ts +4 -4
  55. package/dist/interface/IHistoryStep.d.mts +2 -2
  56. package/dist/interface/IHistoryStep.d.ts +2 -2
  57. package/dist/managers/StepManager.d.mts +14 -0
  58. package/dist/managers/StepManager.d.ts +14 -0
  59. package/dist/managers/StepManager.js +18 -0
  60. package/dist/managers/StepManager.js.map +1 -1
  61. package/dist/managers/StepManager.mjs +18 -0
  62. package/dist/managers/StepManager.mjs.map +1 -1
  63. package/dist/managers/index.js +24 -6
  64. package/dist/managers/index.js.map +1 -1
  65. package/dist/managers/index.mjs +24 -6
  66. package/dist/managers/index.mjs.map +1 -1
  67. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -151,6 +151,21 @@ function getLabelInstanceByClassName(labelName) {
151
151
  }
152
152
  }
153
153
 
154
+ // src/types/CloseType.ts
155
+ var Close = "close";
156
+
157
+ // src/types/PauseType.ts
158
+ var PauseValueType = "pause";
159
+ function Pause(duration) {
160
+ return {
161
+ type: PauseValueType,
162
+ duration
163
+ };
164
+ }
165
+
166
+ // src/types/RepeatType.ts
167
+ var Repeat = "repeat";
168
+
154
169
  // src/classes/ChoiceMenuOption.ts
155
170
  var ChoiceMenuOption = class {
156
171
  /**
@@ -181,25 +196,18 @@ var ChoiceMenuOptionClose = class {
181
196
  * Label to be opened when the option is selected
182
197
  */
183
198
  this.label = new CloseLabel();
199
+ /**
200
+ * Type of the label to be opened
201
+ */
202
+ this.type = Close;
203
+ /**
204
+ * Properties to be passed to the label
205
+ */
206
+ this.props = {};
184
207
  this.text = text;
185
208
  }
186
209
  };
187
210
 
188
- // src/types/CloseType.ts
189
- var Close = "close";
190
-
191
- // src/types/PauseType.ts
192
- var PauseValueType = "pause";
193
- function Pause(duration) {
194
- return {
195
- type: PauseValueType,
196
- duration
197
- };
198
- }
199
-
200
- // src/types/RepeatType.ts
201
- var Repeat = "repeat";
202
-
203
211
  // src/functions/DialogueUtility.ts
204
212
  function setDialogue(props) {
205
213
  let text = "";
@@ -255,7 +263,9 @@ function getChoiceMenuOptions() {
255
263
  itemLabel.choiseIndex = index;
256
264
  options.push({
257
265
  text: option.text,
258
- label: itemLabel
266
+ label: itemLabel,
267
+ type: Close,
268
+ props: {}
259
269
  });
260
270
  return;
261
271
  }
@@ -280,28 +290,30 @@ function getDialogueHistory() {
280
290
  GameStepManager.stepsHistory.forEach((step) => {
281
291
  let dialoge = step.dialoge;
282
292
  let requiredChoices = step.choices;
283
- if (list.length > 0 && list[list.length - 1].choices && !list[list.length - 1].choiceMade && step.currentLabel) {
293
+ if (list.length > 0 && list[list.length - 1].choices && !list[list.length - 1].playerMadeChoice && step.currentLabel) {
284
294
  let oldChoices = list[list.length - 1].choices;
285
295
  if (oldChoices) {
286
- let choiceMade = void 0;
296
+ let choiceMade = false;
287
297
  if (step.choiceIndexMade !== void 0 && oldChoices.length > step.choiceIndexMade) {
288
- choiceMade = oldChoices[step.choiceIndexMade];
289
- } else {
290
- choiceMade = oldChoices.find((choice) => {
291
- if (choice.type === Close) {
292
- return false;
293
- }
294
- return choice.label === step.currentLabel;
295
- });
298
+ oldChoices[step.choiceIndexMade].isMadeChoice = true;
299
+ choiceMade = true;
296
300
  }
297
- list[list.length - 1].choiceMade = choiceMade;
301
+ list[list.length - 1].playerMadeChoice = choiceMade;
302
+ list[list.length - 1].choices = oldChoices;
298
303
  }
299
304
  }
300
305
  if (dialoge || requiredChoices) {
306
+ let choices = requiredChoices == null ? void 0 : requiredChoices.map((choice) => {
307
+ return {
308
+ text: choice.text,
309
+ type: choice.type,
310
+ isMadeChoice: false
311
+ };
312
+ });
301
313
  list.push({
302
314
  dialoge,
303
- choiceMade: void 0,
304
- choices: requiredChoices,
315
+ playerMadeChoice: false,
316
+ choices,
305
317
  stepIndex: step.index
306
318
  });
307
319
  }
@@ -1138,7 +1150,7 @@ function showWithDissolveTransition(tag, image, speed, priority) {
1138
1150
  }
1139
1151
 
1140
1152
  // src/constants.ts
1141
- var PIXIVN_VERSION = "0.5.0";
1153
+ var PIXIVN_VERSION = "0.5.2";
1142
1154
 
1143
1155
  // src/functions/SavesUtility.ts
1144
1156
  function getSaveData() {
@@ -2224,6 +2236,24 @@ var _GameStepManager = class _GameStepManager {
2224
2236
  return yield _GameStepManager.runCurrentStep(props);
2225
2237
  });
2226
2238
  }
2239
+ /**
2240
+ * When the player is in a choice menu, can use this function to exit to the choice menu.
2241
+ * @param props The props to pass to the step.
2242
+ * @returns StepLabelResultType or undefined.
2243
+ * @example
2244
+ * ```typescript
2245
+ * GameStepManager.exitToChoiceMenu(yourParams).then((result) => {
2246
+ * if (result) {
2247
+ * // your code
2248
+ * }
2249
+ * })
2250
+ * ```
2251
+ */
2252
+ static exitToChoiceMenu(props) {
2253
+ return __async(this, null, function* () {
2254
+ return _GameStepManager.runNextStep(props);
2255
+ });
2256
+ }
2227
2257
  /* After Update Methods */
2228
2258
  // /**
2229
2259
  // * After the update or code edit, some steps or labels may no longer match.