mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-25 10:53:36 +00:00
32 lines
1.1 KiB
C++
32 lines
1.1 KiB
C++
#pragma once
|
|
// using namespace std;
|
|
|
|
#include "TutorialTask.h"
|
|
|
|
// 4J Stu - Tasks that involve using the controller
|
|
class ControllerTask : public TutorialTask {
|
|
private:
|
|
std::unordered_map<int, bool> completedMappings;
|
|
std::unordered_map<int, bool> southpawCompletedMappings;
|
|
bool m_bHasSouthpaw;
|
|
unsigned int m_uiCompletionMask;
|
|
int* m_iCompletionMaskA;
|
|
int m_iCompletionMaskACount;
|
|
bool CompletionMaskIsValid();
|
|
|
|
// Mouse tracking for tutorial look-around task
|
|
float m_lastYaw;
|
|
float m_lastPitch;
|
|
bool m_initialized = false;
|
|
|
|
public:
|
|
ControllerTask(Tutorial* tutorial, int descriptionId,
|
|
bool enablePreCompletion, bool showMinimumTime,
|
|
int mappings[], unsigned int mappingsLength,
|
|
int iCompletionMaskA[] = NULL, int iCompletionMaskACount = 0,
|
|
int iSouthpawMappings[] = NULL,
|
|
unsigned int uiSouthpawMappingsCount = 0);
|
|
~ControllerTask();
|
|
virtual bool isCompleted();
|
|
virtual void setAsCurrentTask(bool active = true);
|
|
}; |