Skip to content
This repository was archived by the owner on Nov 7, 2022. It is now read-only.

Incorrect value in the "sayLine" variable passed as a parameter in function "ScriptEngine :: call()" #81

Closed
Mac1512 opened this issue Feb 7, 2020 · 1 comment
Assignees
Labels
bug Something isn't working
Milestone

Comments

@Mac1512
Copy link

Mac1512 commented Feb 7, 2020

In the file _TalkingState.hpp, inside the function:

void loadId (int id)

The value of the "sayLine" parameter, which is passed to the next function is incorrect:

ScriptEngine::call(_pActor, "sayingLine", pAnim, sayLine);

It would contain a rare string, because the following is incorrect:

const char * sayLine = tostring(_sayText).data();

It should be the following:

std::string sayLine = tostring(_sayText).data();
ScriptEngine::call(_pActor, "sayingLine", pAnim, sayLine.c_str());

I have tested this on Windows 10 x64 Bits, compiling the engine for 32 Bits, with VS2029 with the VS2017 tools

regards

Edited:

I have edited the text that had written deletion a part since I have realized that it can only be correct when the actor is willie, and in the absence of more evidence, I will not include this part as a failure.

@Mac1512 Mac1512 changed the title Wrong value in sayLine variable and call function failure where it is passed as a parameter Incorrect value in the "sayLine" variable passed as a parameter in function "ScriptEngine :: call()" Feb 7, 2020
@scemino scemino self-assigned this Feb 8, 2020
@scemino scemino added the bug Something isn't working label Feb 8, 2020
@scemino scemino added this to the v0.2.0 milestone Feb 8, 2020
@scemino
Copy link
Owner

scemino commented Feb 8, 2020

This has been fixed by this commit de33403
Thank you again @Mac1512

@scemino scemino closed this as completed Feb 8, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants