phyzills update

Whether you're a newbie or an experienced programmer, any questions, help, or just talk of any language will be welcomed here.

Moderator: Coders of Rage

User avatar
avansc
Respected Programmer
Respected Programmer
Posts: 1708
Joined: Sun Nov 02, 2008 6:29 pm

phyzills update

Post by avansc »

after playing that auditorium game i wanted to make my own.

im not really good with graphics, but can make a physics system clone of auditoruim in about day.

so if anyone is interested in doing this with me let me know.
Last edited by avansc on Sun Nov 30, 2008 1:30 pm, edited 1 time in total.
Some person, "I have a black belt in karate"
Dad, "Yea well I have a fan belt in street fighting"
User avatar
Arce
Jealous Self-Righteous Prick
Jealous Self-Righteous Prick
Posts: 2153
Joined: Mon Jul 10, 2006 9:29 pm

Re: phyzills [need developers]

Post by Arce »

I'm a much interested spectator.

Some of the physics looked intense. Can't wait to see the result.

Normally I may call BS on "having it done in about a day"...But you're more than capable. ;P
<qpHalcy0n> decided to paint the office, now i'm high and my hands hurt
User avatar
cypher1554R
Chaos Rift Demigod
Chaos Rift Demigod
Posts: 1124
Joined: Sun Jun 22, 2008 5:06 pm

Re: phyzills [need developers]

Post by cypher1554R »

In Flash or..?
User avatar
M_D_K
Chaos Rift Demigod
Chaos Rift Demigod
Posts: 1087
Joined: Tue Oct 28, 2008 10:33 am
Favorite Gaming Platforms: PC
Programming Language of Choice: C/++
Location: UK

Re: phyzills [need developers]

Post by M_D_K »

If its not flash or using DirectX for rendering, I'm in. What do you need done?
Gyro Sheen wrote:you pour their inventory onto my life
IRC wrote: <sparda> The routine had a stack overflow, sorry.
<sparda> Apparently the stack was full of shit.
User avatar
avansc
Respected Programmer
Respected Programmer
Posts: 1708
Joined: Sun Nov 02, 2008 6:29 pm

Re: phyzills [need developers]

Post by avansc »

flash, ugh, no. just GL i guess.

and the physics i saw in there was minimal at best.
some vector fields. ie, apply force to particle up, down, left right. (that games has no collision between particles)
some aries that change attributes of the particle, ie color.
some vector fields that attract.

i think it would cool to have a aria that changed the charge of the particle, ie. if the vector field says go let it will go right.

any other ideas will help.

i dont really care what graphics api or engine we use.
im just going to do the data structures and physics, and game engine
so if someone is good with a 2D API that would be great.
Some person, "I have a black belt in karate"
Dad, "Yea well I have a fan belt in street fighting"
User avatar
cypher1554R
Chaos Rift Demigod
Chaos Rift Demigod
Posts: 1124
Joined: Sun Jun 22, 2008 5:06 pm

Re: phyzills [need developers]

Post by cypher1554R »

avansc wrote:flash, ugh, no. just GL i guess.

and the physics i saw in there was minimal at best.
some vector fields. ie, apply force to particle up, down, left right. (that games has no collision between particles)
some aries that change attributes of the particle, ie color.
some vector fields that attract.

i think it would cool to have a aria that changed the charge of the particle, ie. if the vector field says go let it will go right.

any other ideas will help.

i dont really care what graphics api or engine we use.
im just going to do the data structures and physics, and game engine
so if someone is good with a 2D API that would be great.
That's actually real easy. The color changing area is a circle..

Code: Select all

#define C_RED 0
#define C_GREEN 1
#define C_YELLOW 2

struct Particle {
	float x, y;
	int color;
};

struct ColorField {
	float x, y, radius;
	int color;
};

bool isParticleInsideField(Particle &p, ColorField &cf)
{
	float squareDist = pow((p.x - cf.x), 2) + pow((p.y - cf.y), 2);
	if(squareDist < pow(cf.radius, 2))
		return true;
	else
		return false;
}
Then in display func. you check if it's inside. If so, give the field's color to particle.

I think I might actually be able to do this in OpenGL.. I need to take my mind off things happening anyway..

Crap.. I feel sick.. My stomach spinning.. Did anyone see that "Nibiru" shit..? About near pass catastrophe..?
Think I'm gonna throw up..
User avatar
cypher1554R
Chaos Rift Demigod
Chaos Rift Demigod
Posts: 1124
Joined: Sun Jun 22, 2008 5:06 pm

Re: phyzills [need developers]

Post by cypher1554R »

Although my graphics card doesn't support newer shaders and I'm not really familiar with GL HLSL, I'd have some problems there..
User avatar
dandymcgee
ES Beta Backer
ES Beta Backer
Posts: 4709
Joined: Tue Apr 29, 2008 3:24 pm
Current Project: https://github.com/dbechrd/RicoTech
Favorite Gaming Platforms: NES, Sega Genesis, PS2, PC
Programming Language of Choice: C
Location: San Francisco
Contact:

Re: phyzills [need developers]

Post by dandymcgee »

Cool, this will certainly be interesting.
Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches! :twisted:
User avatar
avansc
Respected Programmer
Respected Programmer
Posts: 1708
Joined: Sun Nov 02, 2008 6:29 pm

Re: phyzills update

Post by avansc »

i have decided to go with SDL on this one.

i decided to go solo on this one.
the planning is complete, and i suspect that i will have a working demo at the end of the week. at least i hope so.
the source will be freely available at http://www.codeplex.com/phyzilz at that time.
Some person, "I have a black belt in karate"
Dad, "Yea well I have a fan belt in street fighting"
User avatar
avansc
Respected Programmer
Respected Programmer
Posts: 1708
Joined: Sun Nov 02, 2008 6:29 pm

Re: phyzills update

Post by avansc »

i got a bunch done today.
i think i will probably just make a proof of concept version and then release it and hope someone
likes it enough to make some levels.

its probably 85% completed.

Image
Some person, "I have a black belt in karate"
Dad, "Yea well I have a fan belt in street fighting"
User avatar
Falco Girgis
Elysian Shadows Team
Elysian Shadows Team
Posts: 10294
Joined: Thu May 20, 2004 2:04 pm
Current Project: Elysian Shadows
Favorite Gaming Platforms: Dreamcast, SNES, NES
Programming Language of Choice: C/++
Location: Studio Vorbis, AL
Contact:

Re: phyzills update

Post by Falco Girgis »

Damn. avansc works fast and doesn't screw around.
User avatar
M_D_K
Chaos Rift Demigod
Chaos Rift Demigod
Posts: 1087
Joined: Tue Oct 28, 2008 10:33 am
Favorite Gaming Platforms: PC
Programming Language of Choice: C/++
Location: UK

Re: phyzills update

Post by M_D_K »

Damn I wish I saw this update sooner, I dug up some old particle emitter code and started modifying it :)

But not to worry avansc is already way ahead of me. I guess its back to my game devving.

I wonder if I should try for a full 3D one seeing as a emitter was originally written for 3D :)
Gyro Sheen wrote:you pour their inventory onto my life
IRC wrote: <sparda> The routine had a stack overflow, sorry.
<sparda> Apparently the stack was full of shit.
User avatar
avansc
Respected Programmer
Respected Programmer
Posts: 1708
Joined: Sun Nov 02, 2008 6:29 pm

Re: phyzills update

Post by avansc »

GyroVorbis wrote:Damn. avansc works fast and doesn't screw around.
unless its with your mom.
Some person, "I have a black belt in karate"
Dad, "Yea well I have a fan belt in street fighting"
User avatar
M_D_K
Chaos Rift Demigod
Chaos Rift Demigod
Posts: 1087
Joined: Tue Oct 28, 2008 10:33 am
Favorite Gaming Platforms: PC
Programming Language of Choice: C/++
Location: UK

Re: phyzills update

Post by M_D_K »

avansc wrote:
GyroVorbis wrote:Damn. avansc works fast and doesn't screw around.
unless its with your mom.
burn :lol:
Gyro Sheen wrote:you pour their inventory onto my life
IRC wrote: <sparda> The routine had a stack overflow, sorry.
<sparda> Apparently the stack was full of shit.
User avatar
avansc
Respected Programmer
Respected Programmer
Posts: 1708
Joined: Sun Nov 02, 2008 6:29 pm

Re: phyzills update

Post by avansc »

i logged every hour i spent on this. the tally is 3:34.56

i wrote a rexx program that counts every second my VS is open.

its probably about as far as im gonna go with this. ive accomplised what i intended to do. if anyone wants the source let me know.

Image
Some person, "I have a black belt in karate"
Dad, "Yea well I have a fan belt in street fighting"
Post Reply