mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-25 12:23:37 +00:00
74 lines
2.5 KiB
C++
74 lines
2.5 KiB
C++
#include "../../Minecraft.World/Platform/stdafx.h"
|
|
#include "Tutorial.h"
|
|
#include "TutorialConstraints.h"
|
|
#include "TutorialTask.h"
|
|
|
|
TutorialTask::TutorialTask(Tutorial* tutorial, int descriptionId,
|
|
bool enablePreCompletion,
|
|
std::vector<TutorialConstraint*>* inConstraints,
|
|
bool bShowMinimumTime, bool bAllowFade,
|
|
bool bTaskReminders)
|
|
: tutorial(tutorial),
|
|
descriptionId(descriptionId),
|
|
m_promptId(-1),
|
|
enablePreCompletion(enablePreCompletion),
|
|
areConstraintsEnabled(false),
|
|
bIsCompleted(false),
|
|
bHasBeenActivated(false),
|
|
m_bAllowFade(bAllowFade),
|
|
m_bTaskReminders(bTaskReminders),
|
|
m_bShowMinimumTime(bShowMinimumTime),
|
|
m_bShownForMinimumTime(false) {
|
|
if (inConstraints != NULL) {
|
|
for (AUTO_VAR(it, inConstraints->begin()); it < inConstraints->end();
|
|
++it) {
|
|
TutorialConstraint* constraint = *it;
|
|
constraints.push_back(constraint);
|
|
}
|
|
delete inConstraints;
|
|
}
|
|
|
|
tutorial->addMessage(descriptionId);
|
|
}
|
|
|
|
TutorialTask::~TutorialTask() {
|
|
enableConstraints(false);
|
|
|
|
for (AUTO_VAR(it, constraints.begin()); it < constraints.end(); ++it) {
|
|
TutorialConstraint* constraint = *it;
|
|
|
|
if (constraint->getQueuedForRemoval()) {
|
|
constraint->setDeleteOnDeactivate(true);
|
|
} else {
|
|
delete constraint;
|
|
}
|
|
}
|
|
}
|
|
|
|
void TutorialTask::taskCompleted() {
|
|
if (areConstraintsEnabled == true) enableConstraints(false);
|
|
}
|
|
|
|
void TutorialTask::enableConstraints(bool enable,
|
|
bool delayRemove /*= false*/) {
|
|
if (!enable && (areConstraintsEnabled || !delayRemove)) {
|
|
// Remove
|
|
for (AUTO_VAR(it, constraints.begin()); it != constraints.end(); ++it) {
|
|
TutorialConstraint* constraint = *it;
|
|
// app.DebugPrintf(">>>>>>>> %i\n", constraints.size());
|
|
tutorial->RemoveConstraint(constraint, delayRemove);
|
|
}
|
|
areConstraintsEnabled = false;
|
|
} else if (!areConstraintsEnabled && enable) {
|
|
// Add
|
|
for (AUTO_VAR(it, constraints.begin()); it != constraints.end(); ++it) {
|
|
TutorialConstraint* constraint = *it;
|
|
tutorial->AddConstraint(constraint);
|
|
}
|
|
areConstraintsEnabled = true;
|
|
}
|
|
}
|
|
|
|
void TutorialTask::setAsCurrentTask(bool active /*= true*/) {
|
|
bHasBeenActivated = active;
|
|
} |