- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在尝试创建一个 Box2D 程序,但我需要启用 debugdraw 以查看发生了什么。我正在考虑使用 Box2D 库中包含的 Helloworld 程序作为模板。不幸的是,它没有使用debugdraw,我似乎无法实现它。 Testbed 使用它,但它有点复杂,而且解释得太差,无法用作模板。那么这里的任何人都可以分享一个使用 debugdraw 的 Helloworld.cpp(或使用 Box2D 的类似基本程序)的示例(最好像在 Testbed 中那样实现)吗?
如果重要的话,我正在使用 VS2013。
感谢和问候。
最佳答案
如果您还没有弄清楚这一点(对于 future 的观众),核心 Box2D 库没有可以简单地“启用”的调试绘图功能。它是物理引擎,而不是渲染引擎。
也就是说,您不必从头开始做所有事情。 Testbed 有调试绘图的实现,你可以make a test可以在那里运行。 Box2D 还提供了一种绘图模板,以供您实现自己的渲染代码。本质上,有一些回调,您可以在其中放置代码,例如多边形渲染。每一帧,对于每个多边形,Box2D 将调用该回调,您的多边形将呈现在屏幕上!
您要求提供一个简单的示例,所以这里有一个使用 GLFW 进行窗口化和使用裸机 OpenGL 进行渲染所需的示例。有很多关于这些的教程,但您实际上不需要了解它们就可以理解代码。
主要.cpp:
#define GLEW_STATIC
#include <GLFW\glfw3.h>
#include <Box2D\Box2D.h>
#include "Physics.h"
int main() {
// Initialize window (this is GLFW-specific)
GLFWwindow* window;
if (!glfwInit()) return 1;
window = glfwCreateWindow(960, 540, "Box2D Debug Draw", NULL, NULL);
if (!window) {
glfwTerminate();
return 2;
}
glfwMakeContextCurrent(window);
glfwSwapInterval(1);
DebugDraw debugDraw; // Declare an instance of our DebugDraw class so we can actually use it
// Set up Box2D world, bodies, etc. (you should be familiar with most of this)
int velocityIterations = 8;
int positionIterations = 3;
b2World* world;
b2Body* groundBody;
b2Body* testBody;
{
b2Vec2 gravity(0.0f, -10.0f);
world = new b2World(gravity);
world->SetDebugDraw(&debugDraw); // YOU NEED THIS SO BOX2D KNOWS WHERE TO LOOK FOR DRAWING CALLBACKS
debugDraw.SetFlags(b2Draw::e_shapeBit);
}
{
b2BodyDef gbDef;
gbDef.position.Set(0.0f, -10.0f);
groundBody = world->CreateBody(&gbDef);
b2PolygonShape gbShape;
gbShape.SetAsBox(50.0f, 10.0f);
groundBody->CreateFixture(&gbShape, 0.0f);
}
{
b2BodyDef tbDef;
tbDef.type = b2_dynamicBody;
tbDef.position.Set(0.0f, 10.0f);
testBody = world->CreateBody(&tbDef);
b2PolygonShape tbShape;
tbShape.SetAsBox(1.0f, 1.0f);
b2FixtureDef tbFix;
tbFix.shape = &tbShape;
tbFix.density = 1.0f;
tbFix.friction = 0.3f;
testBody->CreateFixture(&tbFix);
}
// Loop until user exits
b2Timer timer;
float last = timer.GetMilliseconds();
while (!glfwWindowShouldClose(window)) {
float now = timer.GetMilliseconds();
world->Step((now - last) / 1000, 8, 3); // Step simulation forward by amount of time since last step
last = now;
glClear(GL_COLOR_BUFFER_BIT); // Clear screen
glPushMatrix(); // Push matrix so we can revert after doing some transformations
glScalef(40.0f / 960.0f, 40.0f / 540.0f, 1.0f); // Zoom out
glTranslatef(0.0f, -5.0f, 0.0f); // Pan up
world->DrawDebugData(); // CALL THE DRAWING CALLBACKS WE SET UP IN PHYSICS CLASS
glPopMatrix(); // Revert transformations
glfwSwapBuffers(window); // Push updated buffers to window
glfwPollEvents(); // Poll user events so OS doesn't think app is frozen
}
// Garbage collection
delete world;
glfwDestroyWindow(window);
glfwTerminate();
return 0;
}
物理.h:
#ifndef PHYSICS
#define PHYSICS
#include <Box2D\Box2D.h>
class DebugDraw : public b2Draw { // b2Draw has all the virtual functions that we need to override here
public:
// We won't be implementing all of these, but if we don't declare them here we'll get an override error
void DrawSolidPolygon(const b2Vec2* vertices, int32 vertexCount, const b2Color& color);
void DrawPolygon(const b2Vec2* vertices, int32 vertexCount, const b2Color& color);
void DrawCircle(const b2Vec2& center, float32 radius, const b2Color& color);
void DrawSolidCircle(const b2Vec2& center, float32 radius, const b2Vec2& axis, const b2Color& color);
void DrawSegment(const b2Vec2& p1, const b2Vec2& p2, const b2Color& color);
void DrawTransform(const b2Transform& xf);
};
#endif
物理.cpp:
#include <GL\glew.h>
#include "Physics.h"
void DebugDraw::DrawSolidPolygon(const b2Vec2* vertices, int32 vertexCount, const b2Color& color) {
// Standard OpenGL rendering stuff
glColor4f(color.r, color.g, color.b, color.a);
glBegin(GL_POLYGON);
for (int i = 0; i < vertexCount; i++) {
glVertex2f(vertices[i].x, vertices[i].y);
}
glEnd();
}
// We just need to have these to prevent override errors, they don't actually do anything right now
void DebugDraw::DrawPolygon(const b2Vec2* vertices, int32 vertexCount, const b2Color& color) {}
void DebugDraw::DrawCircle(const b2Vec2& center, float32 radius, const b2Color& color) {}
void DebugDraw::DrawSolidCircle(const b2Vec2& center, float32 radius, const b2Vec2& axis, const b2Color& color) {}
void DebugDraw::DrawSegment(const b2Vec2& p1, const b2Vec2& p2, const b2Color& color) {}
void DebugDraw::DrawTransform(const b2Transform& xf) {}
关于c++ - Box2D:在 Helloworld.cpp 或类似的基本程序中使用 debugdraw?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30292855/
学习SQL。有一个简单的带有字段标题的桌面游戏。我想根据标题进行搜索。如果我有一款名为 Age of Empires III: Dynasties 的游戏,并且我使用 LIKE 和参数 Age of
我正在尝试为以下数据结构创建镜头。我正在使用lens-family . data Tree = Tree { _text :: String, _subtrees ::
我发现很难理解这一点。比如说,在 Python 中,如果我想要一个根据用户输入在循环中修改的列表,我会有这样的内容: def do_something(): x = [] while(
我有一个像这样的 mysql 查询 SELECT group_name FROM t_groups WHERE group_name LIKE '%PCB%'; 结果是 group_name ----
我的数据库表中有超过一百万条记录。当我使用like时非常慢,当我使用match against时他们丢失了一些记录。 我创建帮助表: 标签列表 tag_id tag_name tag_rel_me
我在我的一个 Java 项目中使用 JXBrowser 来简单显示 googlemaps 网页,以便我可以在那里跟踪路线,但最近我想改进该项目,但我的问题是 JXBrowser 的许可证过期(只有一个
小问题:如何将 mysql_escape_string 变量包含在 like 子句中? "SELECT * FROM table WHERE name LIKE '%". %s . "%'" 或
我尝试使用几个jquery消息插件,例如alertify . 但我注意到的主要事情是系统消息框会停止后台功能,直到用户响应。其他插件没有此功能。 有没有办法将此功能添加到 jquery 插件中?可以扩
我是 Ruby 新手。我过去使用过 shell。我正在将 shell 程序转换为 ruby。我有以下命令 cmd="cat -n " + infile + " | grep '127.0.0.1
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 要求我们推荐或查找工具、库或最喜欢的场外资源的问题对于 Stack Overflow 来说是偏离主题的,
当我研究 Rust 时,我试图编写一个 Rust 函数来查看任何可迭代的字符串。 我最初的尝试是 fn example_1(iter: impl Iterator); fn example_2(ite
我必须在我的项目中使用代码拆分。但无论如何,第一次初始下载有一些代码。 现在我想向最终用户展示代码下载(.cache.html - 或其他代码拆分)的进度,例如 gmail 启动进度。 请你帮帮我。
我今天找到了一个错误,它最终是由我代码中的以下片段引起的(我试图在列表中仅过滤“PRIMARY KEY”约束): (filter #(= (% :constraint_type "PRIMARY KE
我正在尝试在关键字段上实现检查约束。关键字段由 3 个字符的前缀组成,然后附加数字字符(可以手动提供,但默认是从序列中获取整数值,然后将其转换为 nvarchar)。关键字段定义为 nvarhcar(
我正在尝试使用以下方式创建 List 实例: List listOne = new ArrayList(); List listTwo = new ArrayList(){}; List listTh
我过去曾为 iOS 开发过,最近转向了 mac 开发。我开始了一个“感受”事物的项目,但遇到了一个问题。我试图创建一个 NSTableView 来显示多个项目,包括一个标签、一个 2 UIImageV
我正在尝试编写一个查询,该查询将返回哪些主机缺少某个软件: Host Software A Title1 A
AFAIK,在三种情况下别名是可以的 仅限定符或符号不同的类型可以互为别名。 struct 或 union 类型可以为包含在其中的类型设置别名。 将 T* 转换为 char* 是可以的。 (不允许相反
\s 似乎不适用于 sed 's/[\s]\+//' tempfile 当它为工作时 sed 's/[ ]\+//' tempfile 我正在尝试删除由于命令而出现在每行开头的空格: nl -s ')
我正在使用 ocamlgraph 在 ocaml 中编写程序,并想知道是否要将其移植到 F# 我有哪些选择?谢谢。 最佳答案 QuickGraph .Net 最完整的图形库之一 关于F# 图形库(类似
我是一名优秀的程序员,十分优秀!