Box2D的Edge Shape的碰撞处理
有时候两个body碰撞时需要精确到某条边,所以在创建body的时候需要创建multiFixture,也就是多个fixture的组合。早期Box2D版本中Polygon Shape有setAsEdge方法设置每条边的fixture,v2.2.1之后只有setAsBox方法了。 方法一:可以在每条边的位置上加上一个Edg
有时候两个body碰撞时需要精确到某条边,所以在创建body的时候需要创建multiFixture,也就是多个fixture的组合。早期Box2D版本中Polygon Shape有setAsEdge方法设置每条边的fixture,v2.2.1之后只有setAsBox方法了。
方法一:可以在每条边的位置上加上一个Edge Shape,然后再body中加入这个边的fixture并保存起来,碰撞的时候就能判断是碰到哪条边了。
方法二:直接用body的createFixture(edgeShape,density)方法,直接创建一条edge的fixture,因为一般边不需要其他属性。默认边有摩擦力和弹力。
边也是以body中点为原点,所以边的起点和终点要用宽和高的一半来算。
这样添加后的碰撞种类(以player站在platform)上为例,可分为:
1. player的polygonShape和platform的topEdgeShape碰撞。
2. player的bottomEdgeShape和platform的polygonShape碰撞。
3. player的polygonShape和platform的polygonShape碰撞。
4. player的bottomEdgeShape和platform的topEdgeShape不会发生碰撞,因为他们都是Edge类型。
edgeShape的长度比polygonShape相应边的长度短一点,这样分别在判断左右两边和上下两边是否发生碰撞时,不会相互影响到。当rightEdge碰撞时,bottomEdge不会发生碰撞;当bottomEdge碰撞时,rightEdge也不会发生碰撞。
如果edgeShape的长度和polygonShape相应边的长度一样的话,当rightEdge碰撞时,bottomEdge的右端也会顶到墙上,发生碰撞,从而产生逻辑错误。比如:设定bottomShape发生碰撞时player的状态是isJump=NO,bottomEdge没有碰撞时isJump=YES。当player跳起并碰到墙壁时,isJump应该是YES状态,但bottomEdge检查到了碰撞,将isJump设为NO,这样player的其他行为和动作会发生错误。
或者把矩形polygonShape的直角顶点“切掉”,变成八边形。
如下图所示:
1.
//DELTA_LENGTH = 0.5 //fixture1 with polygon shape b2PolygonShape rectShape; rectShape.SetAsBox(size.x/2/PTM_RATIO, size.y/2/PTM_RATIO); b2FixtureDef fixtureDef1; p_body->CreateFixture(&fixtureDef1); //fixture2 with edge shape b2EdgeShape edgeShape; edgeShape.Set(b2Vec2((-size.x/2 + DELTA_LENGTH)/PTM_RATIO, (-size.y/2)/PTM_RATIO), b2Vec2((size.x/2 - DELTA_LENGTH)/PTM_RATIO, (s-size.y/2)/PTM_RATIO)); b2FixtureDef fixtureDef2; fixtureDef2.shape = &edgeShape; p_bottomFixture = p_body->CreateFixture(&fixtureDef2);
2.
b2EdgeShape edgeShape; edgeShape.Set(b2Vec2((-size.x/2 + DELTA_LENGTH)/PTM_RATIO, (-size.y/2)/PTM_RATIO), b2Vec2((size.x/2 - DELTA_LENGTH)/PTM_RATIO, (-size.y/2)/PTM_RATIO)); p_bottomFixture = p_body->CreateFixture(&edgeShape, 0);
3 polygonShape必须是凸多边形,顶点按照逆时针方向依次给出
b2PolygonShape polygonShape; b2Vec2 vec[] = {b2Vec2(-size.x/2/PTM_RATIO, -size.y/2/PTM_RATIO), b2Vec2(size.x/2/PTM_RATIO, -size.y/2/PTM_RATIO), b2Vec2(size.x/2/PTM_RATIO, -size.y/4/PTM_RATIO), b2Vec2(size.x/4/PTM_RATIO, size.y/2/PTM_RATIO), b2Vec2(-size.x/4/PTM_RATIO, size.y/2/PTM_RATIO), b2Vec2(-size.x/2/PTM_RATIO, -size.y/4/PTM_RATIO)}; polygonShape.Set(vec, 6); b2FixtureDef fixtureDef1; fixtureDef1.shape = &polygonShape; fixtureDef1.density = dens; fixtureDef1.friction = f; fixtureDef1.restitution = rest; p_polygonFixture = p_body->CreateFixture(&fixtureDef1);

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Many times when we use computers, we will choose Edge to query the information we want, and when logging in to some websites, we need an account and password, but it is troublesome to enter it every time. How do we operate at this time? What about Edge automatically saving passwords? For those who don’t know, let’s take a look together. How to automatically save passwords in Edge 1. Open the software, click the three-dot "..." button in the upper right corner, and select "Settings" in the option list below. 2. In the window that opens, click the "Personal Information" option on the left. 3. Then find "Let me choose to save password" on the right and change

Microsoft Edge's drag-and-drop feature allows you to easily open links or text on web pages, which is both practical and time-saving. To use this feature, just drag and drop the link or text anywhere on the page. This article will show you how to enable or disable Super Drag and Drop mode in Microsoft Edge. What is Super Drag and Drop mode in Microsoft Edge? Microsoft Edge has introduced a new feature called "Super Drag and Drop" that allows users to simply drag and drop links to quickly open them in a new tab. Just drag and drop the link anywhere in the Edge browser window. Edge will automatically load the link in a new tab. In addition, users can also

Recently, many friends have encountered lag when using the edge browser to watch site B videos in full screen, and the experience is very bad. So how to solve it? Let’s take a look at the detailed solutions below. Edge browser station B is stuck in full screen: 1. Open the browser and enter the URL about:flags. 2. Enter developer settings. 3. Click "Reset all logos to default" above. 4. Scroll down to the bottom and check "Enable Experimental JavaScript Features" to solve the problem.

1. First, we right-click the blank space of the taskbar and select the [Task Manager] option, or right-click the start logo, and then select the [Task Manager] option. 2. In the opened Task Manager interface, we click the [Services] tab on the far right. 3. In the opened [Service] tab, click the [Open Service] option below. 4. In the [Services] window that opens, right-click the [InternetConnectionSharing(ICS)] service, and then select the [Properties] option. 5. In the properties window that opens, change [Open with] to [Disabled], click [Apply] and then click [OK]. 6. Click the start logo, then click the shutdown button, select [Restart], and complete the computer restart.

How to set Edge browser compatibility? Most users use the Edge browser as their default browser. When we want to use the Edge browser's compatibility mode for web browsing, how should we set it up? For those who are not sure, please follow the editor to see the specific setting method. Edge browser compatibility setting method: Method 1: 1. Click the Start menu and select the Edge browser, as shown in the figure below. 2. After opening the Edge browser, click the three-dot icon in the upper right corner, as shown in the figure below. In order to help players who haven't passed the level yet, let's take a look at the specific puzzle-solving methods. 3. The compatibility mode of the Edge browser is mainly set through ie. Click the three-dot icon and select "Enable

What should I do if the memory usage of Edge browser is high? The editor has found that many friends now like to use Microsoft's Edge browser, because it is not only simple, but also can install various browser plug-ins. However, recently some friends have found that its CPU usage is very high when using Edge. , that is, the memory usage is too high. How to deal with this situation? Let’s take a look at the solution with the editor below. Solution to high memory usage in Edge 1. Close the tab and enter the edge browser and click the three dots in the upper right corner. Select "Extensions" in the taskbar. Just close or uninstall plug-ins you don't need. 2. Update the Microsoft Edge browser. Please make sure it is installed on your computer.

What to do if edge pops up that Microsoft respects your privacy? Recently, some users have reported that the edge browser they use often pops up the message "Microsoft respects your privacy." Even if they click I accept, it will still appear next time they open the browser. So how do you close this annoying pop-up window? This problem should occur because the edge browser does not accept the cookie of the msn.cn website. The following editor will show you how to solve the problem that Microsoft respects your privacy pops up in edge. Try it and see if it helps. How to solve the problem that Microsoft respects your privacy when Microsoft respects your privacy in edge

What should I do if the Edge browser shows that the site is not secure? The Edge browser is a browser launched by Microsoft, and the security of the Edge browser is very reliable, but what should you do if you download something in the Edge browser and it says that the site is not secure and you cannot download it? Let’s take a look at the editor below How to solve this problem? Solution to the problem that the Edge browser shows that the site is unsafe 1. Open the browser and click the three dots in the upper right corner. 2. Click "Settings" in the taskbar. 3. Click "Privacy and Security" on the left taskbar. In order to help players who haven't passed the level yet, let's take a look at the specific puzzle-solving methods. One way is to find "w" in the game settings
