2.6.2 (2.7 beta 2)
2014-11-27, 02:13 PM
#39
RE: [Future] 2.7
the idea is that every cube has sub-cubes, there are two preferable ways to implement destruction

1. Animation (works)
animating destruction is far more easy than implementing a full scale physics system.
not to mention physics suck in here :c
examples will suffice
if a grenade explodes on the ground the following will happen.
a "model" if you will
of flying rock/debris will begin at the point of explosion. (where the grenade went off)
Next a black scorch mark texture will be placed on surrounding map models /or walls.
the texture will remain until the game is over
2. Physics ( i'm always on the road of physics )
a set(s) of cubes inside other cubes "sub-cubes" if you don't mind
examples will suffice.
when a grenade goes off nearby cubes will release a set of sub-cubes.
these sub-cubes will react the way they should in a normal physical environment. its best to simulate these in a similar way that bullets are simulated. (Ricochet)
The pieces will move in a outward direction, expanding, until the force of all these pieces become 0.
The Pieces will move at a regulated speed and can effect other cubes.
MORE EXAMPLES
If I throw a grenade and it explodes next to a wall, the animation method will load the "explosion" model. This model will simulate rocks/debris flying in an outward direction.
(unfouranatley that means no realistic richochet and a few physics issues ( passing through walls :OOOOOOO )
then a scorch mark will be set in the area that the grenade exploded with a set radius of scorch mark's range








VERY VERY COMPLEX CODE C;

ANIMATION

////////////////////////////////
if(grenade(explodes))
{
debris.location = grenade.location;
debris(expand);
scorchmarks(grenade.location,darkness,etc)
}
///////////////////////////////

PHYSICS <3
while(grenade(explode))
{
if(i=0;cube[x].location == (grenade.location.x+=5 || grenade.location.x-=5) //if cube is near explosion lol
{
cube[x].explodes(); //not realistic but you get the point

}
else
{
x++;
}

}


///////////////////////////////
PROS/CONS
Animation;
Pros;
Very easy (well easier than physics)
probably more attractive because we could throw up some high quality smoke animation and call it fair cause its beautiful.
keeps a nice frame rate
cons;
With all goods come bads.
physical glitches such as debris passing through walls, smokes passing through walls etc.



physics;
pros;
very realistic
nice effects can be added
a wear and tear experience (you can see things you've previously done damage to
cons;
very cumbersome to implement...not hard but takes time
perhaps some minor performance issues (although they might not be noticeable


//////////////////////
hopefully you all get the idea.
my personal opinion says physics are better and that if the engine can find its way to support it we wont have performance issues (performance issues would be hard to find if your use to 200fps and your running 120)
but animation can never be crossed out because of its simplicity.
That's up to you guys, perhaps a poll would do. Ill post a poll, although i doubt many responses will be received. What ever way you all pick ill try my best to get it down.

just a update on me
I'm in a c++ class as of now and learning a bit more than i use to about it but mainly math ,
picked up a neat little tutorial on objective c which is a little fun ;0 I'm planning on developing the mobile ACR if any of you guys are interested... neat little project
modeling is going down, access to a computer is harder for me. My PC currently STILL in upgrading ;'(
my game is going moderately well, right now I'm in the pre-coding stage, sdk here and there, the usual.
im trying to learn the most i can in geometry, I'm hoping to get a nice graphical fidelity lesson in there c:
Dubstep is at a all time high for me and the usual audio development is coming on.
weaponry sounds are high on my list c; as well as natural sounds (*water,wind,birds,)
uploading some forest sounds today when i finish getting them to loop right :c
And I play ACR at school with my buds now! all is well C:

and VERY IMportant thing right here


ACR 2.5.9 will run fine but 2.6.0 and the Beta will not run unless I resinstal OpenAL.dll ???!?!?!?!?!
Me and my friends love acr alot but cannot get the full experience when we cannot install openal.dll ( the actual install file needs admin rights to install, so i was hoping in the 2.7 that openal.dll would be prepackaged in the Assault Cube Reloaded/bin_win32 folder by default. Im making a little program right now that will extract the openal.dll if run by the user. C: hopefully that'll solve that. and HEAL GUN MODEL IDEA is siiiiicccckkk i have an idea for the heal gun thats going to be pretty sweet so stay tune!

God must love stupid people. He made so many.
->unknown

[Image: 8VEZK0Q.gif]


Messages In This Thread
2.6.2 (2.7 beta 2) - by ruler501 - 2014-08-22, 07:13 AM
RE: [Future] 2.7 - by rXn - 2014-08-23, 02:54 AM
RE: [Future] 2.7 - by DeltaStrikeOp - 2014-08-24, 11:50 AM
RE: [Future] 2.7 - by ruler501 - 2014-08-24, 01:23 PM
RE: [Future] 2.7 - by Victor - 2014-08-24, 01:35 PM
RE: [Future] 2.7 - by DeltaStrikeOp - 2014-08-24, 11:36 PM
RE: [Future] 2.7 - by Victor - 2014-08-25, 09:52 AM
RE: [Future] 2.7 - by deady - 2014-08-25, 11:25 AM
RE: [Future] 2.7 - by Victor - 2014-08-25, 11:31 AM
RE: [Future] 2.7 - by DeltaStrikeOp - 2014-08-25, 12:08 PM
RE: [Future] 2.7 - by Victor - 2014-08-25, 12:30 PM
RE: [Future] 2.7 - by Fru5tum - 2014-08-25, 04:35 PM
RE: [Future] 2.7 - by Victor - 2014-08-25, 05:01 PM
RE: [Future] 2.7 - by Fru5tum - 2014-08-25, 05:06 PM
RE: [Future] 2.7 - by Victor - 2014-08-25, 05:25 PM
RE: [Future] 2.7 - by DeltaStrikeOp - 2014-08-25, 05:38 PM
RE: [Future] 2.7 - by ruler501 - 2014-10-20, 02:57 PM
RE: [Future] 2.7 - by DeltaStrikeOp - 2014-10-21, 02:35 PM
RE: [Future] 2.7 - by ruler501 - 2014-10-22, 07:43 PM
RE: [Future] 2.7 - by Fru5tum - 2014-10-28, 02:36 AM
RE: [Future] 2.7 - by asmanel - 2014-10-28, 12:27 PM
RE: [Future] 2.7 - by ruler501 - 2014-10-28, 12:49 PM
RE: [Future] 2.7 - by jonaspm - 2014-11-04, 10:34 PM
RE: [Future] 2.7 - by Victor - 2014-11-18, 07:24 PM
RE: [Future] 2.7 - by {KE}bluwarguy - 2014-11-19, 10:32 AM
RE: [Future] 2.7 - by {KE}bluwarguy - 2014-11-19, 10:33 AM
RE: [Future] 2.7 - by -{ET}-xdEpicZombie - 2014-11-20, 03:45 AM
RE: [Future] 2.7 - by asmanel - 2014-11-21, 03:16 AM
RE: [Future] 2.7 - by {KE}bluwarguy - 2014-11-21, 06:52 AM
RE: [Future] 2.7 - by DeltaStrikeOp - 2014-11-22, 12:55 AM
RE: [Future] 2.7 - by Victor - 2014-11-22, 03:05 PM
RE: [Future] 2.7 - by DeltaStrikeOp - 2014-11-24, 01:19 AM
RE: [Future] 2.7 - by {KE}bluwarguy - 2014-11-24, 07:13 AM
RE: [Future] 2.7 - by asmanel - 2014-11-25, 02:14 AM
RE: [Future] 2.7 - by ruler501 - 2014-11-25, 08:43 AM
RE: [Future] 2.7 - by Victor - 2014-11-25, 09:22 PM
RE: [Future] 2.7 - by DeltaStrikeOp - 2014-11-26, 04:00 PM
RE: [Future] 2.7 - by -{ET}-xdEpicZombie - 2014-11-27, 10:28 AM
RE: [Future] 2.7 - by Fru5tum - 2014-11-27, 02:13 PM
RE: [Future] 2.7 - by Victor - 2014-11-29, 11:49 AM
RE: [Future] 2.7 - by Fru5tum - 2014-11-29, 12:24 PM
RE: [Future] 2.7 - by Victor - 2014-11-29, 03:13 PM
RE: [Future] 2.7 - by Fru5tum - 2014-11-29, 03:15 PM
RE: [Future] 2.7 - by Victor - 2014-11-29, 03:16 PM
RE: [Future] 2.7 - by DeltaStrikeOp - 2014-11-30, 02:02 AM
RE: [Future] 2.7 - by rXn - 2014-12-03, 08:00 AM
RE: [Future] 2.7 - by Fru5tum - 2014-12-03, 06:26 PM
RE: [Future] 2.7 - by {KE}bluwarguy - 2014-12-04, 08:19 AM
RE: [Future] 2.7 - by Victor - 2014-12-04, 07:34 PM
RE: [Future] 2.7 - by Fru5tum - 2014-12-10, 01:56 PM
RE: [Future] 2.7 - by Victor - 2014-12-11, 07:02 PM
RE: [Future] 2.7 - by DeltaStrikeOp - 2014-12-12, 04:37 PM
RE: [Future] 2.7 - by Fru5tum - 2014-12-16, 06:09 PM
RE: [Future] 2.7 - by Victor - 2014-12-16, 07:55 PM
RE: [Future] 2.7 - by Fru5tum - 2014-12-16, 08:25 PM
RE: [Future] 2.7 - by {KE}bluwarguy - 2014-12-31, 01:39 PM
RE: [Future] 2.7 - by Fru5tum - 2014-12-31, 05:59 PM
RE: 2.6.2 (2.7 beta 2) - by Victor - 2015-01-11, 10:54 AM
RE: 2.6.2 (2.7 beta 2) - by Papangue974 - 2015-01-17, 09:16 AM
RE: 2.6.2 (2.7 beta 2) - by asmanel - 2015-01-17, 04:36 PM
RE: 2.6.2 (2.7 beta 2) - by ruler501 - 2015-01-17, 07:55 PM
RE: 2.6.2 (2.7 beta 2) - by Papangue974 - 2015-01-18, 12:02 AM
RE: 2.6.2 (2.7 beta 2) - by -{ET}-xdEpicZombie - 2015-01-18, 04:01 AM
RE: 2.6.2 (2.7 beta 2) - by Papangue974 - 2015-01-18, 08:04 AM
RE: 2.6.2 (2.7 beta 2) - by asmanel - 2015-01-18, 12:25 PM
RE: 2.6.2 (2.7 beta 2) - by rXn - 2015-02-11, 09:11 AM
RE: 2.6.2 (2.7 beta 2) - by Victor - 2015-02-13, 05:46 PM
RE: 2.6.2 (2.7 beta 2) - by rXn - 2015-02-24, 11:16 AM
RE: 2.6.2 (2.7 beta 2) - by {KE}bluwarguy - 2015-03-27, 09:24 PM
RE: 2.6.2 (2.7 beta 2) - by Victor - 2015-03-29, 05:57 PM

Forum Jump:


This forum uses Lukasz Tkacz MyBB addons.