mirror of https://github.com/axmolengine/axmol.git
53 lines
1.6 KiB
C++
53 lines
1.6 KiB
C++
/**
|
|
* Copyright(c) Live2D Inc. All rights reserved.
|
|
*
|
|
* Use of this source code is governed by the Live2D Open Software license
|
|
* that can be found at https://www.live2d.com/eula/live2d-open-software-license-agreement_en.html.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <CubismFramework.hpp>
|
|
#include <Math/CubismMatrix44.hpp>
|
|
#include <Math/CubismViewMatrix.hpp>
|
|
#include "TouchManager.h"
|
|
#include "2d/Sprite.h"
|
|
#include "cocos2d.h"
|
|
#include <vector>
|
|
#include "LAppLive2DManager.hpp"
|
|
|
|
class LAppView : public ax::DrawNode
|
|
{
|
|
public:
|
|
LAppView();
|
|
virtual ~LAppView() {}
|
|
|
|
virtual void onEnter();
|
|
virtual void onExit();
|
|
|
|
virtual void draw(ax::Renderer* renderer, const ax::Mat4& transform, uint32_t flags);
|
|
void onDraw(const ax::Mat4& transform, uint32_t flags);
|
|
|
|
void onTouchesBegan(const std::vector<ax::Touch*>& touches, ax::Event* event);
|
|
void onTouchesMoved(const std::vector<ax::Touch*>& touches, ax::Event* event);
|
|
void onTouchesEnded(const std::vector<ax::Touch*>& touches, ax::Event* event);
|
|
|
|
void updateViewMatrix(float dx, float dy, float cx, float cy, float scale);
|
|
float transformViewX(float deviceX);
|
|
float transformViewY(float deviceY);
|
|
float transformScreenX(float deviceX);
|
|
float transformScreenY(float deviceY);
|
|
|
|
void setDebugRectsNode(DrawNode* debugRects);
|
|
void drawDebugRects(LAppLive2DManager* manager) const;
|
|
|
|
static LAppView* createDrawNode();
|
|
|
|
private:
|
|
TouchManager* touchMgr;
|
|
Csm::CubismMatrix44* deviceToScreen;
|
|
Csm::CubismViewMatrix* viewMatrix;
|
|
Csm::Rendering::CubismCommandBuffer_Cocos2dx _commandBuffer;
|
|
DrawNode* _debugRects;
|
|
};
|