Effekseer For Cocos2d-x

摘要

Effekseer是一个可以轻松地创建美丽的粒子效果的工具。本库将能够在Cocos2d-X内播放由Effekseer创建而成的粒子效果。 本文档会介绍如何在Cocos2d-x内使用本程式库。 程式库是由复数源代码组成,通过新增本源代码便可为Cocos2d-x进行安装。

对应环境如下

Windows OK
Mac OS X OK
Linux Unknown
iOS OK
Android OK
WindowsPhone Unknown

如何安装

Players/Cocos2d-x_v3文件夹内会包含以下文件。

将这些文件复制到的Cocos2d-x的文件夹内,再设定成编译对象。

如何使用

Samples/文件夹内会有在Cocos2d-x内播放Effekseer粒子效果的样本。本文件只会作出简单的使用方法。详细请参阅样本。

样本是不包含在此程式库内,请将各样本复制到Classes/Effekseer文件夹内使用。 为方便得知文件存放的位置、会有一个名为copyEffekseerFiles.txt的文件作为标签而作识别。

有关可播放的文件

您只可以播放由Effekseer保存而成的文件。由Effekseer保存的文件中包含图像的相对路径。因此,请留意各档案的存放位置。

基本播放

由Effekseer保存而成的文件可在cocos2d-x内播放。欲了解更多资讯,请查看存储在Samples/Simple/内的源代码。


包括Effekseer.h。

#include "Effekseer/Effekseer.h"

在cocos2d::Scene或Layer的衍生类别内加入成员变量efk::EffectManager*。

class HelloWorld : public cocos2d::Scene /* Layer */ {
efk::EffectManager* manager = nullptr;
...

创建对象efk::EffectManager*。

manager = efk::EffectManager::create(Director::getInstance()->getVisibleSize());

读取粒子效果文件

auto effect = efk::Effect::create("Laser01.efk");

建立发射极,并通过将参数添加到阶层。

auto emitter = efk::EffectEmitter::create(manager);
emitter->setEffect(effect);
emitter->setPlayOnEnter(true);

emitter->setPosition(Vec2(300, 300));
emitter->setScale(20);
this->addChild(emitter, 0);

// No need (because it uses autorelease after 1.41)
//effect->release();

更新画面。

manager->update();

衍生visit,使可添加的绘制效果的处理。

void HelloWorld::visit(
	cocos2d::Renderer *renderer, 
	const cocos2d::Mat4& parentTransform, 
	uint32_t parentFlags)
{
	manager->begin(renderer, _globalZOrder);
	cocos2d::Scene::visit(renderer, parentTransform, parentFlags);
	manager->end(renderer, _globalZOrder);
}

删除执行对象。

HelloWorld::~HelloWorld()
{
	manager->release();
}

3D

请阅读 Samples/3D/ 中的示例.

你需要在cocos2d-x的Scene中添加一个摄像头

auto s = Director::getInstance()->getWinSize();
camera = Camera::createPerspective(60, (GLfloat)s.width / s.height, 1, 1000);
camera->setPosition3D(Vec3(100, 100, 100));
camera->lookAt(Vec3(0, 0, 0), Vec3(0, 1, 0));
camera->setCameraFlag(cocos2d::CameraFlag::USER1);

除了更新manager之外,还需要将摄像机参数设置到manager中。

manager->update();
manager->setCameraMatrix(camera->getViewMatrix());
manager->setProjectionMatrix(camera->getProjectionMatrix());

网络

当应用程序运行时,您可以从外部通过网络编辑应用程序(游戏等)中的播放效果。

创建服务器实例并使用要从Effekseer连接的端口执行makeNetworkServerEnabled作为此函数的参数。

networkSever = efk::NetworkServer::create();
networkSever->makeNetworkServerEnabled(60000);

除了更新manager之外,还需要更新服务器。然后你可以编辑Effekseer的效果。要从另一台计算机编辑效果,必须使用防火墙的设置打开端口。

manager->update();
networkSever->update();

授权

如使用Effekseer,你需要添加下面的措辞。 (例如在帮助内)。

The MIT License (MIT)

Copyright (c) 2011 Effekseer Project

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

更新

1.43c (19/09/16)

fixed a bug which causes crash if PlayOnEnter is false, and call play after next frame

fixed a bug that parameters are not applied which are assigned before playing

1.43b (19/08/03)

Fixed OpenGL blend bug

Fixed Samples

1.43 (19/03/02)

Added network functions

1.42 (19/02/08)

Added image caching function

Added documentation

Fixed bug that the behavior of the ribbon and track generated with the 0th frame is wrong

Fixed bug that SSE buffer overrun crashes

Fixed bug that crashes on Android when specifying easing of color

1.41 (18/11/10)

Fixed a bug causes crach when setRemoveOnStop is used. Fixed memory leak in samples.

This release makes Effect and EffectEmitter released automatically. So you need to edit codes about release

1.40 (18/09/12) More functions added. Speed up with Android and iOS. Supported 3D.

1.30 (17/11/03) 发布。