mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-22 11:15:15 +00:00
[debug menu] change: simplify player page
- Show `Yes` and `No` instead of `True` and `False` - Remove `Is in Capture` - Always show `Capture` - Combine `Animation Index` and `Packet Animation` into one `Animation` line - Rename `Puppet0` to `Empty Slot 1` - Don't mention puppets
This commit is contained in:
parent
ec41ee067e
commit
c0bb939a92
2 changed files with 10 additions and 18 deletions
|
@ -186,22 +186,14 @@ void drawMainHook(HakoniwaSequence *curSequence, sead::Viewport *viewport, sead:
|
|||
if (curModel && curPupInfo) {
|
||||
gTextWriter->printf("Player Name: %s\n", curPupInfo->puppetName);
|
||||
gTextWriter->printf("Connection Status: %s\n", curPupInfo->isConnected ? "Online" : "Offline");
|
||||
gTextWriter->printf("Is in Same Stage: %s\n", curPupInfo->isInSameStage ? "True" : "False");
|
||||
gTextWriter->printf("Is in Capture: %s\n", curPupInfo->isCaptured ? "True" : "False");
|
||||
gTextWriter->printf("Puppet Stage: %s\n", curPupInfo->stageName);
|
||||
gTextWriter->printf("Puppet Scenario: %u\n", curPupInfo->scenarioNo);
|
||||
gTextWriter->printf("Puppet Costume: H: %s B: %s\n", curPupInfo->costumeHead, curPupInfo->costumeBody);
|
||||
|
||||
if(curPupInfo->isCaptured) {
|
||||
gTextWriter->printf("Current Capture: %s\n", curPupInfo->curHack);
|
||||
gTextWriter->printf("Current Packet Animation: %s\n", curPupInfo->curAnimStr);
|
||||
gTextWriter->printf("Animation Index: %d\n", curPupInfo->curAnim);
|
||||
}else {
|
||||
gTextWriter->printf("Current Packet Animation: %s\n", curPupInfo->curAnimStr);
|
||||
gTextWriter->printf("Animation Index: %d\n", curPupInfo->curAnim);
|
||||
if (curModel) {
|
||||
gTextWriter->printf("Current Animation: %s\n", al::getActionName(curModel));
|
||||
}
|
||||
gTextWriter->printf("Is in same Stage: %s\n", curPupInfo->isInSameStage ? "Yes" : "No");
|
||||
gTextWriter->printf("Stage: %s\n", curPupInfo->stageName);
|
||||
gTextWriter->printf("Scenario: %u\n", curPupInfo->scenarioNo);
|
||||
gTextWriter->printf("Costume: H: %s B: %s\n", curPupInfo->costumeHead, curPupInfo->costumeBody);
|
||||
gTextWriter->printf("Capture: %s\n", curPupInfo->isCaptured ? curPupInfo->curHack : "");
|
||||
gTextWriter->printf("Animation: %d %s\n", curPupInfo->curAnim, curPupInfo->curAnimStr);
|
||||
if (!curPupInfo->isCaptured) {
|
||||
gTextWriter->printf("Model Animation: %s\n", al::getActionName(curModel));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -35,7 +35,7 @@ Client::Client() {
|
|||
{
|
||||
mPuppetInfoArr[i] = new PuppetInfo();
|
||||
|
||||
sprintf(mPuppetInfoArr[i]->puppetName, "Puppet%zu", i);
|
||||
sprintf(mPuppetInfoArr[i]->puppetName, "Empty Slot %zu", i + 1);
|
||||
}
|
||||
|
||||
strcpy(mDebugPuppetInfo.puppetName, "PuppetDebug");
|
||||
|
|
Loading…
Reference in a new issue