@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.
- package/dist/classes/CharacterBaseModel.js +6 -6
- package/dist/classes/CharacterBaseModel.js.map +1 -1
- package/dist/classes/CharacterBaseModel.mjs +6 -6
- package/dist/classes/CharacterBaseModel.mjs.map +1 -1
- package/dist/classes/ChoiceMenuOption.d.mts +17 -4
- package/dist/classes/ChoiceMenuOption.d.ts +17 -4
- package/dist/classes/ChoiceMenuOption.js +10 -1
- package/dist/classes/ChoiceMenuOption.js.map +1 -1
- package/dist/classes/ChoiceMenuOption.mjs +10 -1
- package/dist/classes/ChoiceMenuOption.mjs.map +1 -1
- package/dist/classes/StoredClassModel.js.map +1 -1
- package/dist/classes/StoredClassModel.mjs.map +1 -1
- package/dist/classes/index.js +6 -6
- package/dist/classes/index.js.map +1 -1
- package/dist/classes/index.mjs +6 -6
- package/dist/classes/index.mjs.map +1 -1
- package/dist/classes/ticker/TickerFadeAlpha.js.map +1 -1
- package/dist/classes/ticker/TickerFadeAlpha.mjs.map +1 -1
- package/dist/classes/ticker/TickerMove.js.map +1 -1
- package/dist/classes/ticker/TickerMove.mjs.map +1 -1
- package/dist/classes/ticker/TickerRotate.js.map +1 -1
- package/dist/classes/ticker/TickerRotate.mjs.map +1 -1
- package/dist/classes/ticker/index.js.map +1 -1
- package/dist/classes/ticker/index.mjs.map +1 -1
- package/dist/constants.d.mts +1 -1
- package/dist/constants.d.ts +1 -1
- package/dist/constants.js +1 -1
- package/dist/constants.js.map +1 -1
- package/dist/constants.mjs +1 -1
- package/dist/constants.mjs.map +1 -1
- package/dist/functions/DialogueUtility.js +47 -17
- package/dist/functions/DialogueUtility.js.map +1 -1
- package/dist/functions/DialogueUtility.mjs +47 -17
- package/dist/functions/DialogueUtility.mjs.map +1 -1
- package/dist/functions/FlagsUtility.js.map +1 -1
- package/dist/functions/FlagsUtility.mjs.map +1 -1
- package/dist/functions/GameUtility.js.map +1 -1
- package/dist/functions/GameUtility.mjs.map +1 -1
- package/dist/functions/ImageUtility.js.map +1 -1
- package/dist/functions/ImageUtility.mjs.map +1 -1
- package/dist/functions/SavesUtility.js +25 -7
- package/dist/functions/SavesUtility.js.map +1 -1
- package/dist/functions/SavesUtility.mjs +25 -7
- package/dist/functions/SavesUtility.mjs.map +1 -1
- package/dist/functions/index.js +48 -18
- package/dist/functions/index.js.map +1 -1
- package/dist/functions/index.mjs +48 -18
- package/dist/functions/index.mjs.map +1 -1
- package/dist/index.js +60 -30
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +60 -30
- package/dist/index.mjs.map +1 -1
- package/dist/interface/IDialogueHistory.d.mts +4 -4
- package/dist/interface/IDialogueHistory.d.ts +4 -4
- package/dist/interface/IHistoryStep.d.mts +2 -2
- package/dist/interface/IHistoryStep.d.ts +2 -2
- package/dist/managers/StepManager.d.mts +14 -0
- package/dist/managers/StepManager.d.ts +14 -0
- package/dist/managers/StepManager.js +18 -0
- package/dist/managers/StepManager.js.map +1 -1
- package/dist/managers/StepManager.mjs +18 -0
- package/dist/managers/StepManager.mjs.map +1 -1
- package/dist/managers/index.js +24 -6
- package/dist/managers/index.js.map +1 -1
- package/dist/managers/index.mjs +24 -6
- package/dist/managers/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -1867,6 +1867,24 @@ var _GameStepManager = class _GameStepManager {
|
|
|
1867
1867
|
return yield _GameStepManager.runCurrentStep(props);
|
|
1868
1868
|
});
|
|
1869
1869
|
}
|
|
1870
|
+
/**
|
|
1871
|
+
* When the player is in a choice menu, can use this function to exit to the choice menu.
|
|
1872
|
+
* @param props The props to pass to the step.
|
|
1873
|
+
* @returns StepLabelResultType or undefined.
|
|
1874
|
+
* @example
|
|
1875
|
+
* ```typescript
|
|
1876
|
+
* GameStepManager.exitToChoiceMenu(yourParams).then((result) => {
|
|
1877
|
+
* if (result) {
|
|
1878
|
+
* // your code
|
|
1879
|
+
* }
|
|
1880
|
+
* })
|
|
1881
|
+
* ```
|
|
1882
|
+
*/
|
|
1883
|
+
static exitToChoiceMenu(props) {
|
|
1884
|
+
return __async(this, null, function* () {
|
|
1885
|
+
return _GameStepManager.runNextStep(props);
|
|
1886
|
+
});
|
|
1887
|
+
}
|
|
1870
1888
|
/* After Update Methods */
|
|
1871
1889
|
// /**
|
|
1872
1890
|
// * After the update or code edit, some steps or labels may no longer match.
|
|
@@ -2059,6 +2077,9 @@ _GameStepManager._openedLabels = [];
|
|
|
2059
2077
|
_GameStepManager._originalStepData = void 0;
|
|
2060
2078
|
var GameStepManager = _GameStepManager;
|
|
2061
2079
|
|
|
2080
|
+
// src/types/CloseType.ts
|
|
2081
|
+
var Close = "close";
|
|
2082
|
+
|
|
2062
2083
|
// src/classes/ChoiceMenuOption.ts
|
|
2063
2084
|
var ChoiceMenuOptionClose = class {
|
|
2064
2085
|
/**
|
|
@@ -2069,6 +2090,14 @@ var ChoiceMenuOptionClose = class {
|
|
|
2069
2090
|
* Label to be opened when the option is selected
|
|
2070
2091
|
*/
|
|
2071
2092
|
this.label = new CloseLabel();
|
|
2093
|
+
/**
|
|
2094
|
+
* Type of the label to be opened
|
|
2095
|
+
*/
|
|
2096
|
+
this.type = Close;
|
|
2097
|
+
/**
|
|
2098
|
+
* Properties to be passed to the label
|
|
2099
|
+
*/
|
|
2100
|
+
this.props = {};
|
|
2072
2101
|
this.text = text;
|
|
2073
2102
|
}
|
|
2074
2103
|
};
|
|
@@ -2119,9 +2148,6 @@ var DialogueBaseModel2 = class {
|
|
|
2119
2148
|
}
|
|
2120
2149
|
};
|
|
2121
2150
|
|
|
2122
|
-
// src/types/CloseType.ts
|
|
2123
|
-
var Close = "close";
|
|
2124
|
-
|
|
2125
2151
|
// src/functions/DialogueUtility.ts
|
|
2126
2152
|
function setDialogue(props) {
|
|
2127
2153
|
let text = "";
|
|
@@ -2177,7 +2203,9 @@ function getChoiceMenuOptions() {
|
|
|
2177
2203
|
itemLabel.choiseIndex = index;
|
|
2178
2204
|
options.push({
|
|
2179
2205
|
text: option.text,
|
|
2180
|
-
label: itemLabel
|
|
2206
|
+
label: itemLabel,
|
|
2207
|
+
type: Close,
|
|
2208
|
+
props: {}
|
|
2181
2209
|
});
|
|
2182
2210
|
return;
|
|
2183
2211
|
}
|
|
@@ -2202,28 +2230,30 @@ function getDialogueHistory() {
|
|
|
2202
2230
|
GameStepManager.stepsHistory.forEach((step) => {
|
|
2203
2231
|
let dialoge = step.dialoge;
|
|
2204
2232
|
let requiredChoices = step.choices;
|
|
2205
|
-
if (list.length > 0 && list[list.length - 1].choices && !list[list.length - 1].
|
|
2233
|
+
if (list.length > 0 && list[list.length - 1].choices && !list[list.length - 1].playerMadeChoice && step.currentLabel) {
|
|
2206
2234
|
let oldChoices = list[list.length - 1].choices;
|
|
2207
2235
|
if (oldChoices) {
|
|
2208
|
-
let choiceMade =
|
|
2236
|
+
let choiceMade = false;
|
|
2209
2237
|
if (step.choiceIndexMade !== void 0 && oldChoices.length > step.choiceIndexMade) {
|
|
2210
|
-
|
|
2211
|
-
|
|
2212
|
-
choiceMade = oldChoices.find((choice) => {
|
|
2213
|
-
if (choice.type === Close) {
|
|
2214
|
-
return false;
|
|
2215
|
-
}
|
|
2216
|
-
return choice.label === step.currentLabel;
|
|
2217
|
-
});
|
|
2238
|
+
oldChoices[step.choiceIndexMade].isMadeChoice = true;
|
|
2239
|
+
choiceMade = true;
|
|
2218
2240
|
}
|
|
2219
|
-
list[list.length - 1].
|
|
2241
|
+
list[list.length - 1].playerMadeChoice = choiceMade;
|
|
2242
|
+
list[list.length - 1].choices = oldChoices;
|
|
2220
2243
|
}
|
|
2221
2244
|
}
|
|
2222
2245
|
if (dialoge || requiredChoices) {
|
|
2246
|
+
let choices = requiredChoices == null ? void 0 : requiredChoices.map((choice) => {
|
|
2247
|
+
return {
|
|
2248
|
+
text: choice.text,
|
|
2249
|
+
type: choice.type,
|
|
2250
|
+
isMadeChoice: false
|
|
2251
|
+
};
|
|
2252
|
+
});
|
|
2223
2253
|
list.push({
|
|
2224
2254
|
dialoge,
|
|
2225
|
-
|
|
2226
|
-
choices
|
|
2255
|
+
playerMadeChoice: false,
|
|
2256
|
+
choices,
|
|
2227
2257
|
stepIndex: step.index
|
|
2228
2258
|
});
|
|
2229
2259
|
}
|