1.Cocos2dx 3.2中vector,ValueMap,Touch触摸时间的使用.iconv字符编解码



  1. Cocos2dx3.2以后使用Vector<T>代替了CCArray。案例如下:

头文件:T02Vector.h


#ifndef
__T02Vector_H__

#define
__T02Vector_H__

#include
"T32.h"

class
T02Vector
: public
Layer

{

public:

CREATE_FUNC(T02Vector);

//Cocos2dx3.2以后使用Vector代替了CCArray

Vector<Sprite*>
_arr;

bool
init();

};

#endif


编写:T02Vector.cpp


#include
"T02Vector.h"

//in cocos3.2 Vector代替CCArray

//如果不是Ref的子类,那不能用Vector,应该用std::vector

bool
T02Vector::init()

{

Layer::init();

Sprite*
sprite
= Sprite::create();

//增加元素

_arr.pushBack(sprite);

//遍历

Vector<Sprite*>::iterator
it;

for
(it
= _arr.begin();
it
!= _arr.end();
++it)

{

Sprite*
s
= *it;

}

for
(auto
it
= _arr.begin();
it
!= _arr.end();++it)

{

}

for
(auto
it:
_arr)

{

}

//从后往前遍历

for
(auto
it
= _arr.rbegin();
it
!= _arr.rend();++it)

{

}

//删除

_arr.eraseObject(sprite);

return
true;

}

2 Map的用法(注意字符编解码的第三方库有:iconv,cocos中集成的有这方面的功能)


头文件:T03Map.h


#ifndef
__T03Map_H__

#define
__T03Map_H__

#include
"T32.h"

class
T03Map :
public
Layer{

public:

CREATE_FUNC(T03Map);

bool
init();

};

#endif


编写:T03Map.cpp


#include
"T03Map.h"

/*

ValueMap是用来代替cocos2d.x的CCDictionary

*/

bool
T03Map::init()

{

Layer::init();

//内容的加载

ValueMap&
vm =
FileUtils::getInstance()->getValueMapFromFile("about.xml");

//CCDictionary* dict = CCDictionary::createWithContentsOfFile("about.xml");

//const CCString* x = dict->valueForKey("x");

//x->intValue();

//查找

auto
it =
vm.find("aaa");

if (it
== vm.end())

{

CCLog("can
not find aaa");

}

it =
vm.find("people3");

it->first;  
//key:的类型是std::string

it->second; 
//value:的类型是Value,相对cocos3.2.3的CCString

CCLog("key
is %s, value is %s",
it->first.c_str(),
it->second.asString().c_str());

CCLog("............................end");

vm["中文"]
= "bbb";

CCLog("........start
walk over");

//遍历

for (auto
it =
vm.begin();
it !=
vm.end();++it)

{

CCLog("key
is %s,value is %s",it->first.c_str(),it->second.asString().c_str());

}

CCLog("..........................end");

FileUtils::getInstance()->writeToFile(vm,
"new.xml");

#if 0

// C++11

for (auto
it :
vm)

{

it.first;

it.second;

}

//
插入

vm["aa"]
= 10;

//
访问,这种访问有副作用,如果bb节点不存在,它会创建一个bb节点

Value&
v =
vm["bb"];

v = 100;

vm["bb"]
= false;

#endif

return
true;

}


用到的about.xml如下:


<?xml version="1.0" encoding="UTF-8" ?>

<plist>

<dict>

<key>people1</key>

<string>许佳音工作室出品</string>

<key>people2</key>

<string>总监:许佳音</string>

<key>people3</key>

<string>程序:姜博</string>

<key>people4</key>

<string>美术:马俊</string>

<key>people5</key>

<string>改编:班级</string>

</dict>

</plist>

3
 T04Label的用法


头文件:T04Label.h


#ifndef
__T04Label_H__

#define
__T04Label_H__

#include
"T32.h"

class
T04Label :public
Layer{

public:

CREATE_FUNC(T04Label);

bool
init();

};

#endif


编写:T04Label.cpp


#include
"T04Label.h"

bool
T04Label::init()

{

Layer::init();

{

Label*
label =
Label::createWithCharMap("fonts/Labelatlas.png",
24, 32, ‘0‘);

label->setString("12345");

addChild(label);

label->setPosition(winSize.width
/ 2, winSize.height
/ 2);

}

#if 0

Label*
label =
Label::createWithBMFont();

Label*
label =
Label::createWithSystemFont("aaa",
"Arial", 24);

Label*
label =
Label::createWithTTF("");

#endif

//Label* label = Label::createWithTexture()

return
true;

}


运行结果:

3
 T05Touch触摸事件的用法


头文件:T05Touch.h


#ifndef
__T05Touch_H__

#define
__T05Touch_H__

#include
"T32.h"

class
T05Touch :public
Layer

{

public:

CREATE_FUNC(T05Touch);

bool
init();

void
TouchEnded(Touch*,Event
*);

};

#endif


编写:T05Touch.cpp


#include
"T05Touch.h"

bool
T05Touch::init()

{

Layer::init();

{

//
一般使用这种方式,和一个Node相关联

EventListenerTouchOneByOne*
ev =
EventListenerTouchOneByOne::create();

ev->onTouchBegan
= [](Touch*,
Event*){return
true; };

// 
ev->onTouchEnded = [](Touch*, Event*){};

ev->onTouchEnded
= CC_CALLBACK_2(T05Touch::TouchEnded,
this);

_eventDispatcher->addEventListenerWithSceneGraphPriority(ev,
this);

}

#if 0

{

//
固有优先级的方式使用比较少

EventListenerTouchOneByOne*
ev =
EventListenerTouchOneByOne::create();

ev->setSwallowTouches(true);

ev->onTouchBegan
= [](Touch*,
Event*){CCLog("Touch
Begin");
return
true; };

_eventDispatcher->addEventListenerWithFixedPriority(ev,
-128);

}

#endif

{

Sprite*
node =
Sprite::create();

addChild(node);

EventListenerTouchOneByOne*
ev =
EventListenerTouchOneByOne::create();

ev->onTouchBegan
= [](Touch*
touch,
Event*){

//通过touch->getLocation()的方式获得被选中的点的位置

Vec2
pt =
touch->getLocation();

CCLog("Sprite
is touched, pt.x=%f, pt.y=%f",
pt.x,
pt.y);

return
true;

};

// 
ev->onTouchEnded = [](Touch*, Event*){};

// ev->onTouchEnded = CC_CALLBACK_2(T05Touch::TouchEnded, this);

_eventDispatcher->addEventListenerWithSceneGraphPriority(ev,
node);

}

{

EventListenerTouchAllAtOnce*
ev =
EventListenerTouchAllAtOnce::create();

ev->onTouchesBegan
= [](const
std::vector<Touch*>&,
Event*){};

_eventDispatcher->addEventListenerWithSceneGraphPriority(ev,
this);

}

return
true;

}

void
T05Touch::TouchEnded(Touch*,
Event*){

}

时间: 2024-10-23 06:26:06

1.Cocos2dx 3.2中vector,ValueMap,Touch触摸时间的使用.iconv字符编解码的相关文章

Cocos2d-x中Vector&lt;T&gt;容器以及实例介绍

Vector<T> 是Cocos2d-x 3.x推出的列表容器,因此它所能容纳的是Ref及子类所创建的对象指针,其中的T是模板,表示能够放入到容器中的类型,在Cocos2d-x 3.x中T表示Ref类.Vector<T>是模仿C++的std::vector<T>模板类而设计的.在内存管理方面不使用__Array的引用计数,它的内存管理是由编译器自动处理的,可以不用考虑内存释放问题.Vector<T>的性能优于__Array类,Coco2d-x官方将Vecto

Cocos2d-x中Vector&amp;lt;T&amp;gt;容器以及实例介绍

Vector<T> 是Cocos2d-x 3.x推出的列表容器,因此它所能容纳的是Ref及子类所创建的对象指针,其中的T是模板,表示能够放入到容器中的类型,在Cocos2d-x 3.x中T表示Ref类.Vector<T>是模仿C++的std::vector<T>模板类而设计的. 在内存管理方面不使用__Array的引用计数,它的内存管理是由编译器自己主动处理的,能够不用考虑内存释放问题. Vector<T>的性能优于__Array类.Coco2d-x官方将V

Cocos2d-x 3.0中实现多点触摸

Cocos2d-x 3.0中实现多点触摸 尊重原创:http://cn.cocos2d-x.org/tutorial/show?id=2713 在上一篇<Cocos2d-x 3.0 中使用单点触摸>中介绍了在Cocos2d-x 3.0中实现单点触摸,但是有些游戏还会用到多点触摸,其中最典型的游戏是节奏大师,在节奏大师中会不断产生运动的音符,玩家需要不停地点击音符以获得高分,而且玩家可以多个手指头一起点,多个手指头一起点就是使用多点触摸实现的. 下面通过一个小的例子介绍如何在Cocos2d-x

Cocos2d-x 3.0 中使用单点触摸

Cocos2d-x 3.0 中使用单点触摸 尊重原创:http://cn.cocos2d-x.org/tutorial/show?id=2712 在游戏中,经常会用到触摸,大部分游戏也是通过触摸控制游戏角色运动的,在Cocos2d-x 3.0中使用了新的触摸机制,Cocos2d-x 3.0中摒弃了Cocos2d-x 2.0中将要触发的事件交给代理(delegate)处理,再通过实现代理里面的onTouchBegan等方法接收事件,最后完成事件的响应,在Cocos2d-x 3.0中只需通过创建一个

cocos2dx 3.2中的物理引擎初探(一)

cocos2dx在设计之初就集成了两套物理引擎,它们是box2d和chipmunk.我目前使用的是最新版的cocos2dx 3.2.引擎中默认使用的是chipmunk,如果想要改使用box2d的话,需要修改对应的android工程或者是ios工程的配置文件. 在2.x版本的cocos中,使用物理引擎的步骤十分繁琐.但在3.x版本中变得非常方便了.我这次的学习目标是制作一个打砖块的小游戏. 首先,现在的Scene类提供了一个静态工厂方法,用以创造一个集成物理引擎的场景. Scene::initWi

C++中vector reserve和resize函数

1.reserve 当内存受限时(此时虚拟内存都快耗尽),由于push_back由于每次发现存储空间不够时,默认会申请原来空间的两倍,此时申请空间时就会发生错误.因此如果知道 vector需要多少内存的话,最好先用 reserve申请一下空间 ,即预申请一定的空间. 2.resize 重新设置该容器的大小 <span style="font-size:14px;">// test_max.cpp : 定义控制台应用程序的入口点. #include "stdafx.

ogqvcC++中vector和链表插入问题

叔滨劐 ogqvcC++中vector和链表插入问题

Java中vector的使用方法

Vector的使用 vector类底层数组结构的,它包含可以使用整数索引进行访问的组件.不过,vector的大小可以根据需要增大或缩小,以适应创建vector后进行添加或移除项的操作,因此不需要考虑元素是否越界或者会不会浪费内存的问题. 由vector的iterator和listIterator方法所返回的迭代器是快速失败的:也即是它不能并发执行操作.如果在迭代器创建后的任意时间从结构上修改了向量(通过迭代器自身的remove或add方法之外的任何其他方式),则迭代器将抛出ConcurrentM

关于C++中vector和set使用sort方法进行排序

C++中vector和set都是非常方便的容器, sort方法是algorithm头文件里的一个标准函数,能进行高效的排序,默认是按元素从小到大排序 将sort方法用到vector和set中能实现多种符合自己需求的排序 首先sort方法可以对静态的数组进行排序 1 #include<iostream> 2 using namespace std; 3 int main(){ 4 int a[10] = { 9, 0, 1, 2, 3, 7, 4, 5, 100, 10 }; 5 sort(a,