Current time: 04.04.2025, 14:26 Hello There, Guest! (LoginRegister)
Language: english | russian  

Post Reply 
Threaded Mode | Linear Mode
Ваши вопросы по ERM-скриптам
Author Message
Archer30 Offline
Moderators

Posts: 1190
Post: #9211

New question:

So I am trying to set up a string array and use it later, yet nothing seems to work.
  1. !?FU(OnGameEnter);
  2. !!SN:Mi^ntsfl_grailStr^;
  3. ; Set up strings
  4. !!SN:M(M_AUTO_ID)/2/(M_STR)/(M_STORED)/?i^ntsfl_grailStr^;
  5. !!SN:T^ntsfl.str.grailName^/?(name:z);
  6. !!SN:T^ntsfl.str.grailDesc^/?(desc:z);
  7. !!FU(Array_Push):Pi^ntsfl_grailStr^/(name)/(desc);
  8. ; Load strings
  9. !!SN:Mi^ntsfl_grailStr^/?(namePtr:y)/0;
  10. !!SN:Mi^ntsfl_grailStr^/?(descPtr:y)/1;
  11. !!IF:M^%(namePtr) %(descPtr)^; - [for some reason, this returns 0]

%(namePtr) %(descPtr) are both 0. What could be wrong?


Latest ERA mods and scripts in development - My GitHub
(This post was last modified: 17.01.2024 02:38 by Archer30.)
17.01.2024 02:37
Find all posts by this user Quote this message in a reply
Archer30 Offline
Moderators

Posts: 1190
Post: #9212

New question:
Is there a way to make AI heroes more aggressive, like they believe they are stronger and decide to defeat neutral stacks on the map more often?

I tried to place different hooks around AI values calculation, yet those hooks led to crashes.


Latest ERA mods and scripts in development - My GitHub
20.01.2024 03:54
Find all posts by this user Quote this message in a reply
Berserker Offline
Administrators

Posts: 16731
Post: #9213

First of all, warning. Address in SN:M memory is preserved only until game restart/array deallocation (SN:M#118 or any operation, changing array size (push, pop, setCount).
You began with array of size 2 and two empty strings from start. Then you pushed another two strings and got addresses of the first two strings.

ntsfl_grailStr = ['', '', 'some name', 'some description'];

Just change !!SN:M(M_AUTO_ID)/2/(M_STR)/(M_STORED)/?i^ntsfl_grailStr^; to

!!FU(NewStrArr):P?i^ntsfl_grailStr^/(M_STORED); create new string array of size 0

And don't change array size anymore. Tell me if you need a function like AllocBattleStr:P^some text^/?(valid address until battle end)


Скачать Герои 3 Эра и всё, что с ней связано / ERA 2.46f для старых модов
Поддержать проект
20.01.2024 22:27
Find all posts by this user Quote this message in a reply
Archer30 Offline
Moderators

Posts: 1190
Post: #9214

Ah yea that's a simple mistake. Thanks a lot! It's sorted out.


Latest ERA mods and scripts in development - My GitHub
21.01.2024 02:43
Find all posts by this user Quote this message in a reply
Archer30 Offline
Moderators

Posts: 1190
Post: #9215

Yet another new question:

Is OnBattlefieldVisible a good timing for playing spell animation?

Here's a debug sent from a player

As we can see, the game crashed exactly when spell animation was played.
  1. !?FU(Fun_SpellAnimationOnStacks); ID:95658, v997 = [2, 19, 92, 1], flags = [LOCAL_BATTLE(0), THIS_AI_VS_REMOTE_HUMAN(0), IS_THIS_PC_HUMAN_TURN(1), HUMAN_TURN_OR_REAL_BATTLE(1)], x = [-926, 17, 0, 1]
  2. !!UN:C6919200/4/?y1; in 97 wog - Universal a function.erm on line 1 at pos 24541
  3. !!SN:Mx1/?y2/0; in 97 wog - Universal a function.erm on line 1 at pos 24561
  4. !!SN:E5925584/2/y1/y2/x2/x3; in 97 wog - Universal a function.erm on line 1 at pos 24576
This is reported from time to time. I could not reproduce a single crash with that script but I think it would be good to resolve it once and for all.

My questions:
- Is there any alternative timing for spell animation before tactics phases/after entering the battlefield?
- Is playing spell animation after OnBattleRound safer and leads to fewer issues?


Edit: It looks like OnBattlefieldVisible is indeed not safe. Even BM:M at this timing could fail. I plan to abandon this trigger from all scripts.


Latest ERA mods and scripts in development - My GitHub
(This post was last modified: 21.01.2024 05:47 by Archer30.)
21.01.2024 04:44
Find all posts by this user Quote this message in a reply
Berserker Offline
Administrators

Posts: 16731
Post: #9216

It seems not stable. Probably, on BeforeBattleAction on Round 0 is better.


Скачать Герои 3 Эра и всё, что с ней связано / ERA 2.46f для старых модов
Поддержать проект
21.01.2024 21:37
Find all posts by this user Quote this message in a reply
Archer30 Offline
Moderators

Posts: 1190
Post: #9217

Do you mean
  1. !?FU(OnBeforeBattleAction)&i^battle_round^=1/i^arch_triggerOnce^=0;
  2. !!VRi^arch_triggerOnce^:S1;
is better than
  1. !?FU(OnBattleRound)&i^battle_round^=0;
Btw both are after Tactics, which isn't the best solution because you usually want to know most info before setting your troops' positions.


Latest ERA mods and scripts in development - My GitHub
(This post was last modified: 22.01.2024 06:10 by Archer30.)
22.01.2024 04:16
Find all posts by this user Quote this message in a reply
fatsawhorse Offline

Posts: 1022
Post: #9218

Здравствуйте..

А кто может подсказать, а почему нельзя никак удалить пустую лодку с карты приключений командой !!UN:O ?

В чём тут подвох?
22.01.2024 18:29
Find all posts by this user Quote this message in a reply
XEPOMAHT Offline
Moderators

Posts: 2403
Post: #9219

(22.01.2024 18:29)fatsawhorse Wrote:  А кто может подсказать, а почему нельзя никак удалить пустую лодку с карты приключений командой !!UN:O ?

В чём тут подвох?

Лодка, как и герой, - объект менеджера окна приключений, а не объект карты. Соотвественно, добавление и удаление - отдельные содовские функции, !!UN:O не увидит лодку, т.к. физически на карте её нет - она отрисовывается поверх карты.
22.01.2024 20:19
Find all posts by this user Quote this message in a reply
Archer30 Offline
Moderators

Posts: 1190
Post: #9220

Continue from the topic here

This is a script for adding "TEST" in the description of the first stack of the Defender's side (stack #21). I'd like to know if I am doing this correctly.
  1. // Adding New text to the first stack (21) of the defender's side
  2. !?FU(OnSetupBattlefield)&i^battle_isVisible^;
  3. ; Release (if there is any) and create arrays, one for stack desc pointers (size 21) and one for desc string (size undefined)
  4. !!SN:Mi^arch_882_descPtrList^ Mi^arch_882_descList^;
  5. !!FU(NewIntArray):P(BATTLE_STACKS_PER_SIDE)/?i^arch_882_descPtrList^/(M_TEMP);
  6. !!FU(NewStrArray):P?i^arch_882_descList^/(M_TEMP);
  7. !!FU(arch_882_SetUpNewDescForSkeleton):P(BATTLE_DEFENDER_STACK_FIRST);
  8. !?FU(arch_882_SetUpNewDescForSkeleton)&i^battle_isVisible^;
  9. !#VA(stack:x);
  10. !!VR(newDesc:z):S^
  11. {TEST}^;
  12. ; If (newDesc) is not empty, set the new text (and set the pointer of desc to a new one from the string array)
  13. !!if&(newDesc)<>^^;
  14. ; Store the desc pointer to the first array
  15. !!BM(stack):Z?(stackStruct:y);
  16. !!UN:C(stackStruct)/144/(UNC_INT)/?(descPtr:y);
  17. !!VR(itemInd1:y):S(stack) -(BATTLE_DEFENDER_STACK_FIRST);
  18. !!SN:Mi^arch_882_descPtrList^/(itemInd1)/(descPtr);
  19. ; Set up desc to the second array to be used later
  20. !!SN:B(descPtr)/d/?(desc:z);
  21. !!VR(desc):+(newDesc);
  22. !!SN:Mi^arch_882_descList^/?(itemInd2:y);
  23. !!FU(Array_Push):Pi^arch_882_descList^/(desc);
  24. ; Get the address of the element of the second array and apply it to stack structure
  25. !!SN:Mi^arch_882_descList^/?(newDescPtr:y)/(itemInd2);
  26. !!UN:C(stackStruct)/144/(UNC_INT)/(newDescPtr);
  27. !!en;
  28. !?FU(OnAfterBattleUniversal)&i^arch_882_descPtrList^;
  29. !!FU(arch_882_RestoreOriginalDesc):P;
  30. !?FU(OnGameLeave)&i^arch_882_descPtrList^;
  31. !!FU(arch_882_RestoreOriginalDesc):P;
  32. !?FU(arch_882_RestoreOriginalDesc);
  33. !!re i/(BATTLE_DEFENDER_STACK_FIRST)/(BATTLE_DEFENDER_STACK_LAST);
  34. !!SN:Mi^arch_882_descPtrList^/?(ptr:y);
  35. !!if&(ptr);
  36. !!BMi:Z?(stackStruct:y);
  37. !!UN:C(stackStruct)/144/(UNC_INT)/(ptr);
  38. !!en;
  39. !!en;
  40. !!SN:Mi^arch_882_descPtrList^ Mi^arch_882_descList^;
  41. !!VRi^arch_882_descPtrList^:S0;
  42. !!VRi^arch_882_descList^:S0;

Questions:
1. Is there anything to be fixed/optimised?
2. Is both restorations of pointers OnGameLeave and OnAfterBattleUniversal necessary?


Latest ERA mods and scripts in development - My GitHub
(This post was last modified: 23.01.2024 12:19 by Archer30.)
23.01.2024 12:16
Find all posts by this user Quote this message in a reply
Berserker Offline
Administrators

Posts: 16731
Post: #9221

It seems, that there is no need to restore descriptions on game leave or even on after battle. Try without restoration code at all.


Скачать Герои 3 Эра и всё, что с ней связано / ERA 2.46f для старых модов
Поддержать проект
23.01.2024 18:03
Find all posts by this user Quote this message in a reply
Archer30 Offline
Moderators

Posts: 1190
Post: #9222

Berserker, thanks, thought that was necessary. Now it's much simpler.


Latest ERA mods and scripts in development - My GitHub
23.01.2024 19:12
Find all posts by this user Quote this message in a reply
Berserker Offline
Administrators

Posts: 16731
Post: #9223

  1. !?FU(OnBeforeBattleUniversal);
  2. ; Recreate battle strings persistent storage
  3. !!SN&i^edu_battleStrings^:Mi^edu_battleStrings^;
  4. !!FU(NewStrArray):P?i^edu_battleStrings^/(M_TEMP);
  5. !?FU(OnAfterBattleUniversal);
  6. ; Free battle strings persistent storage
  7. !!SN&i^edu_battleStrings^:Mi^edu_battleStrings^;
  8. !?FU(edu_AllocBattleStr);
  9. ; Stores string in a battle persistent memory and returns its raw address in memory
  10. !#VA(textPtr:x); string contents to get persistent address for
  11. !#VA(result:x); result raw string address
  12. !!SN:Mi^edu_battleStrings^/?(strIndex:y);
  13. !!FU(Array_Push):Pi^edu_battleStrings^/z(textPtr);
  14. !!SN:Mi^edu_battleStrings^/?(result)/(strIndex);
  15. !?FU(OnSetupBattlefield);
  16. !!BM(BATTLE_STACK_FIRST):Z?(stackStruct:y);
  17. !!FU(edu_AllocBattleStr):P^{Raging} {~r}Skeleton{~}^/?(newDescAddr:y);
  18. !!UN:C(stackStruct)/144/(UNC_INT)/(newDescAddr);

I use prefix "edu" as "educational" replacement. Just call edu_AllocBattleStr function to get stable address for any text, which will work until battle end.


Скачать Герои 3 Эра и всё, что с ней связано / ERA 2.46f для старых модов
Поддержать проект
23.01.2024 22:12
Find all posts by this user Quote this message in a reply
Archer30 Offline
Moderators

Posts: 1190
Post: #9224

Berserker, it worked well, thanks. Maybe that should be placed in EEF?

Also any hint about this?


Latest ERA mods and scripts in development - My GitHub
24.01.2024 11:50
Find all posts by this user Quote this message in a reply
Berserker Offline
Administrators

Posts: 16731
Post: #9225

Yep, you can add the code to EEF.

  1. !?FU(OnBattleStackObtainsTurn)&i^arch_firstBattleAnimationTriggerFired^=(FALSE);
  2. !!VRi^arch_firstBattleAnimationTriggerFired^:S(TRUE);
  3. !!FU(arch_OnFirstBattleAnimation):P;
  4. !?FU(arch_OnFirstBattleAnimation);
  5. ...


Скачать Герои 3 Эра и всё, что с ней связано / ERA 2.46f для старых модов
Поддержать проект
25.01.2024 16:52
Find all posts by this user Quote this message in a reply
« Next Oldest | Next Newest »
Post Reply 


Forum Jump:

Powered by MyBB Copyright © 2002-2025 MyBB Group