c++ - objective-c 方法中的 std::vector

标签 c++ objective-c objective-c++ box2d-iphone

我正在使用 Objective-C++。我遇到的问题是我需要将 std::vector 传递给 objective-c 方法。这可能吗?下面是我当前的代码,在作为 C 数组传递给方法之前,我必须在 vector 定义方法中对 vector 进行计算(向数组成员添加偏移值)。理想情况下,我想在第二种方法中设置偏移值,从而拆分定义(其中会有几个) 与下面的示例不同,偏移量是可变的。

所以我不想传入 (b2Vec2 *)vect,而是使用 vector

- (void)createterrain1 {

using namespace std;
vector<b2Vec2>vecVerts;
vector<int>::size_type i;
vecVerts.push_back(b2Vec2(-1022.5f / 100.0, -20.2f / 100.0));
vecVerts.push_back(b2Vec2(-966.6f / 100.0, -18.0f / 100.0));
vecVerts.push_back(b2Vec2(-893.8f / 100.0, -10.3f / 100.0));
vecVerts.push_back(b2Vec2(-888.8f / 100.0, 1.1f / 100.0));
vecVerts.push_back(b2Vec2(-804.0f / 100.0, 10.3f / 100.0));
vecVerts.push_back(b2Vec2(-799.7f / 100.0, 5.3f / 100.0));
vecVerts.push_back(b2Vec2(-795.5f / 100.0, 8.1f / 100.0));
vecVerts.push_back(b2Vec2(-755.2f/ 100.0, -9.5f / 100.0));
vecVerts.push_back(b2Vec2(-632.2f / 100.0, 5.3f / 100.0));
vecVerts.push_back(b2Vec2(-603.9f / 100.0, 17.3f / 100.0));
vecVerts.push_back(b2Vec2(-536.0f / 100.0, 18.0f / 100.0));
vecVerts.push_back(b2Vec2(-518.3f / 100.0, 28.6f / 100.0));
vecVerts.push_back(b2Vec2(-282.1f / 100.0, 13.1f / 100.0));
vecVerts.push_back(b2Vec2(-258.1f / 100.0, 27.2f / 100.0));
vecVerts.push_back(b2Vec2(-135.1f / 100.0, 18.7f / 100.0));
vecVerts.push_back(b2Vec2(9.2f / 100.0, -19.4f / 100.0));
vecVerts.push_back(b2Vec2(483.0f / 100.0, -18.7f / 100.0));
vecVerts.push_back(b2Vec2(578.4f / 100.0, 11.0f / 100.0));
vecVerts.push_back(b2Vec2(733.3f / 100.0, -7.4f / 100.0));
vecVerts.push_back(b2Vec2(827.3f / 100.0, -1.1f / 100.0));
vecVerts.push_back(b2Vec2(1006.9f / 100.0, -20.2f / 100.0));
vecVerts.push_back(b2Vec2(1023.2fdddddd / 100.0, -20.2f / 100.0));
i = vecVerts.size();


//I would like to pass this sets of calculations to the stitch method below rather
 than do it here

vector<b2Vec2>::iterator pos;

//add y offset value to our b2Vec2
for(pos = vecVerts.begin();pos != vecVerts.end();++pos)

{
    //get b2Vec2 value at index
    b2Vec2 currVert = *pos;

    //add y offset (this will come from the sprite image size latterly, set value for testing only
    b2Vec2 addVert = b2Vec2(currVert.x,currVert.y + 40 /PTM_RATIO); 

    //copy offset added b2Vec2 back to vector as index
    pos->b2Vec2::operator=(addVert);
}


 //currently using this as kludge to pass my vector to the stitch method
b2Vec2 * chain = &vecVerts[0];
[self stitchterrainvertswith:chain num:i];

这是我当前将 vector 作为 C 样式数组传递的方法

-(void)stitchterrainvertswith:(b2Vec2 *)verts num:(int)num {


//create bodydef
b2BodyDef groundBodyDef;

//set body as static
groundBodyDef.type = b2_staticBody;

//set body position 
groundBodyDef.position.Set(0, 0);

//create body using def
groundBody = world->CreateBody(&groundBodyDef);

//create shapes

b2EdgeShape screenEdge;
b2ChainShape terrain;

terrain.CreateChain(verts, num);
  groundBody->CreateFixture(&terrain,0);

//keeps track of max x value for all the ground pieces that are added to the scene
   //maxVerts.x += totalXVerts.x;
    }

我尝试对 std::vector 使用 objc 包装器,但有点迷失了这里是我的示例:

VecWrap.h
#import "Box2D.h"
#include <vector>

struct VecAcc;

@interface VecWrap : NSObject
{
struct VecAcc* vec;
}
@end

VecWrap.MM

#import "VecWrap.h"

struct VecAcc {
std::vector<b2Vec2>data;
};


@implementation VecWrap


-(id)init 
{
    vec = 0;
    if (self == [super init]) {
    vec = new VecAcc;
}
   return self;
}

-(void)dealloc 

{
delete vec;
[super dealloc];
}
@end

然后创建以下方法:

-(void)stitchgroundvectswith:(VecAcc*)vecs num:(int)num;

哪个行不通这甚至可能吗?

最佳答案

一切正确,Barry Wark 的解决方案有效,但我不推荐它,因为像这样的特定于语言的预处理器技巧在 IMO 中是脆弱的。特别是,如果涉及 namespace ,它们将无法正常工作,并且只能在指针上工作。

首先,我强烈建议开发人员尽可能将 ObjC 和 C++ 分开,并将 ObjC++ 减少到真正需要的几个地方。 ObjC++ 是一种疯狂的语言,gdb 经常遇到麻烦,它会损害 ARC 性能,编译速度较慢,并且通常主要是一种有时有用的 hack 而不是真正的语言。

我推荐这种方法来在 header 中对 ObjC 隐藏您的 C++ 方法:

@interface MyClass

- (void)anOtherMethodCalledFromObjC;

#ifdef __cplusplus
- (void)stitchGroundVectsWithVector:(std::vector<b2Vec2>)vec;
#endif
@end

但一般来说,我建议您的大部分程序都是 .m 和 .cpp 文件,并使用一些 .mm 文件将它们粘合在一起。

有关如何在旧代码中执行此操作的广泛讨论,请参阅 Wrapping C++-Take 2 .较新的代码不需要在 header 中包含 ivars,因此现在实现起来应该更简单。

关于c++ - objective-c 方法中的 std::vector,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8713514/

相关文章:

c++ - CMake:CMake 构建类型 (DCMAKE_BUILD_TYPE) 有什么作用?

c++ - Qt 5.7 堆叠条形图在数据更新时自动重新缩放 y 轴

ios - UITableViewCell 中的自动布局约束不匹配

iphone - 解析 OBJ 文件

ios - 你会为 objective-c++ 静态库启用 ARC 吗?

xcode - 由于 Xcode 不尊重文件类型导致的 Objective-C++ 编译错误

c++ - QByteArray 值比较

c++ - 我应该如何构造带有页面地址的数组(文本编辑器类)

objective-c - NSScrollView 一次一行

iphone - 如何左右对齐表格单元格上的标签