Cut holes in a Texture2D

南笙酒味 提交于 2019-12-12 22:28:34

问题


I want to know how to remove part of a Texture from a Texture2D. I have a simple game in which I want to blow up a planet piece by piece, when a bullet hits it "digs" into the planet.

The physics are already working but I am stuck on how to cut the texture properly.

I need to create a function that takes a Texture2D a position and a radius as input and returns the new Texture2D.

Here is an example of the Texture2D before and after what I want to accomplish. http://img513.imageshack.us/img513/6749/redplanet512examplesmal.png

Also note that i drew a thin brown border around the crater hole. If this is possible it would be a great bonus.


回答1:


After doing alot of googling on the subject it seems the best and fastest way to achieve the effect i want is to use pixel shaders.

More specifically a shader method called 'Alpha mapping'. Alpha mapping is done by using the original texture and another greyscale texture that defines what parts are visible or not.

The idea of the shader is to go through each pixel in the original texture and check how black each pixel in the greyscale image is at the same coordinate. The blacker the pixel in the greyscale picture is the higher the alpha value (more visible) the pixel in the original texture becomes. Since all this is done on the GPU it is lightning fast and leaves the CPU ready to do the actual logic for the game.

For my example I will create a black image to use as my greyscale image and then draw white circles on this corresponding to the parts i want to remove.

I've found a MSDN examples with working source code for XNA 4 that does this (the cat example):

http://create.msdn.com/en-US/education/catalog/sample/sprite_effects

EDIT: I got this to work quite nicely. Created a small tutorial with source code here: http://syntaxwarriors.com/2012/xna-alpha-mapping-with-pixel-shaders/




回答2:


A good way of doing this is to render a "hole texture" using alphablend on top of your planet texture. Think of it like drawing an invisibility circle over your original texture. Take a look at this thread for a few nice links worms-style-destructible-terrain.

To achieve your brown edges I'd guess you'd need to take a similar approach. First render the hole to your terrain with say radius 10px. Then you render another circle from the same origin point but with a slightly larger radius, say 12px. You'd then need to set this circle to a blendmode that results in a brown color.




回答3:


look at my class here: http://www.codeproject.com/Articles/328894/XNA-Sprite-Class-with-useful-methods

1.Simply create an object of Sprite class for your planet
Sprite PlanetSprite = new Sprite(PlanetTexture2D , new Vector2(//yourPlanet.X, //yourPlanet.Y));

2.when the bullet hits the planet, make a circle texure2d by the center of collision point using "GetCollisionPoint(Sprite b)" method

-you can have a Circle.png with transparent corners
-or you can create a Circle using math(which is better if you want to have bullet power)

3.then create an Sprite object of your circle

4.now use the "GetCollisionArea(Sprite b)" to get the overlapped area

5.now use the "ChangeBatchPixelColor(List pixels, Color color)" where pixels is the overlapped area and color is Color.FromNonPremultiplied(0, 0, 0, 0)

-note you don't need to draw your circle at all, after using it you can destroy it, or leave it for further use



来源:https://stackoverflow.com/questions/9257435/cut-holes-in-a-texture2d

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!