mirror of https://github.com/axmolengine/axmol.git
93 lines
2.7 KiB
C++
93 lines
2.7 KiB
C++
/*
|
|
* cocos2d-x http://www.cocos2d-x.org
|
|
*
|
|
* Copyright (c) 2010-2014 - cocos2d-x community
|
|
*
|
|
* Portions Copyright (c) Microsoft Open Technologies, Inc.
|
|
* All Rights Reserved
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an
|
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and limitations under the License.
|
|
*/
|
|
|
|
#include "Cocos2dRenderer.h"
|
|
#include "AppDelegate.h"
|
|
#include "CCGLViewImpl-winrt.h"
|
|
#include "CCApplication.h"
|
|
#include "cocos2d.h"
|
|
|
|
// These are used by the shader compilation methods.
|
|
#include <vector>
|
|
#include <iostream>
|
|
#include <fstream>
|
|
|
|
using namespace Platform;
|
|
using namespace Windows::UI::Core;
|
|
using namespace Windows::UI::Xaml::Controls;
|
|
using namespace Windows::Graphics::Display;
|
|
|
|
USING_NS_CC;
|
|
|
|
|
|
Cocos2dRenderer::Cocos2dRenderer(int width, int height, float dpi, CoreDispatcher^ dispatcher, Panel^ panel)
|
|
: m_app(nullptr)
|
|
, m_width(width)
|
|
, m_height(height)
|
|
, m_dpi(dpi)
|
|
, m_dispatcher(dispatcher)
|
|
, m_panel(panel)
|
|
{
|
|
m_app = new AppDelegate();
|
|
auto director = cocos2d::Director::getInstance();
|
|
|
|
GLViewImpl* glview = GLViewImpl::create("Test Cpp");
|
|
glview->setDispatcher(dispatcher);
|
|
glview->setPanel(panel);
|
|
glview->Create(static_cast<float>(width), static_cast<float>(height), dpi, DisplayOrientations::Landscape);
|
|
director->setOpenGLView(glview);
|
|
CCApplication::getInstance()->run();
|
|
}
|
|
|
|
Cocos2dRenderer::~Cocos2dRenderer()
|
|
{
|
|
delete m_app;
|
|
}
|
|
|
|
// Draws a basic triangle
|
|
void Cocos2dRenderer::Draw(GLsizei width, GLsizei height, float dpi)
|
|
{
|
|
if (width != m_width || height != m_height)
|
|
{
|
|
m_width = width;
|
|
m_height = height;
|
|
GLViewImpl::sharedOpenGLView()->UpdateForWindowSizeChange(static_cast<float>(width), static_cast<float>(height));
|
|
}
|
|
|
|
if (dpi != m_dpi)
|
|
{
|
|
m_dpi = dpi;
|
|
GLViewImpl::sharedOpenGLView()->SetDPI(m_dpi);
|
|
}
|
|
|
|
GLViewImpl::sharedOpenGLView()->ProcessEvents();
|
|
GLViewImpl::sharedOpenGLView()->Render();
|
|
}
|
|
|
|
void Cocos2dRenderer::QueuePointerEvent(cocos2d::PointerEventType type, Windows::UI::Core::PointerEventArgs^ args)
|
|
{
|
|
GLViewImpl::sharedOpenGLView()->QueuePointerEvent(type, args);
|
|
}
|
|
|
|
void Cocos2dRenderer::QueueKeyBoardEvent(cocos2d::Cocos2dKeyEvent type, Windows::UI::Core::KeyEventArgs^ e)
|
|
{
|
|
//GLViewImpl::sharedOpenGLView()->QueuePointerEvent(type, e);
|
|
}
|
|
|
|
|