Death Punch Studios filling positions. by leeleatherwood - Page 7 - TribalWar Forums
Click Here to find great hosting deals from Branzone.com


Go Back   TribalWar Forums > Current Gaming > Tribes Talk
Reload this Page Death Punch Studios filling positions.
Page 7 of 26
Thread Tools
Milk-Man
VeteranXX
Old
121 - 05-17-2011, 17:07
Reply With Quote
 
Milk-Man is offline
 
Sponsored Links
lemon
Sour++
Contributor
Old
122 - 05-17-2011, 17:09
Reply With Quote
Can I have the flag in your next version? That would be sweet.
 
lemon is offline
 
groove
VeteranXX
Old
123 - 05-17-2011, 17:55
Reply With Quote
Quote:
Originally Posted by Milk-Man View Post
here's an example of how Groove calls for an image in one of his 1.4 configs

Code:
echo("                                                                        BACKGROUNDZ");

$vhud::Background::Texture::flaghud = "FlagHUD.png";


function vhud::vBackground::create()
{
	if ( $vBackground::Loaded )
		return;
		
	$vBackground::Loaded = true;

	vhud::create( "ScriptGL::vBackground", "0% 0%", "0% 0%", vhud::vBackground::render );
	HUD::New("ScriptGL::vBackground", 0, 0, 80, 30);
}

function vhud::vBackground::render()
{
	if($Scriptgl::CurrentGui != "playGui")
		return;
		
	if(!Control::getVisible("ScriptGL::vBackground"))
		return;

	%pg = Control::getExtent("PlayGui");
	%x = getWord(%pg, 0);
	%y = getWord(%pg, 1);
	
	%size = glGetTextureDimensions($vhud::Background::Texture::right);
	%dx = getWord(%size,0);
	%dy = getWord(%size,1);
	
	glEnable($GL_BLEND);
	glDisable($GL_SCISSOR_TEST);
	glBlendFunc($GL_ONE,$GL_ONE_MINUS_SRC_ALPHA);		
	glAlphaFunc($GL_GREATER,$GL_ZERO);
	glEnable($GL_TEXTURE_2D);
	glColor4ub(255,255,255,255);

	glDrawTexture($vhud::Background::Texture::flaghud, $GLEX_SCALED, 700 , 4 , 1.0, 1.0);	

	glLoadIdentity();

}



vhud::vBackground::create();
Notes:

-thats for 1.4 & GreyHounds ScriptGL - it won't work without it

-if you're just drawing a set image and don't need to resize/move based on resolution you can take out the lines about getExtent and GetTextureDimensions and the %x %y stuff

-the glLoadIdentity(); should probably be higher up (at least above the glDrawTexture)

and that vHUD doesn't link to a normal HUD so u can't drag it around (it was my backdrops so i had it placing them based on resolution - no need to drag)
 
groove is offline
 
Milk-Man
VeteranXX
Old
124 - 05-18-2011, 00:50
Reply With Quote
playin with icons

 
Milk-Man is offline
 
Milk-Man
VeteranXX
Old
125 - 05-18-2011, 02:30
Reply With Quote
 
Milk-Man is offline
 
hyung
VeteranXX
Old
126 - 05-18-2011, 02:31
Reply With Quote
@lee: if you want to get the physics right I suggest you read everything andrew's written here:

Andrew - Tribes 1 Physics, Part One: Overview

i wouldn't expect him to lend you a minute of his time though
 
hyung is offline
 
leeleatherwood
Veteran³
Old
127 - 05-18-2011, 13:28
Reply With Quote
Quote:
Originally Posted by Milk-Man View Post
I like those flag icons.
 
leeleatherwood is offline
 
leeleatherwood
Veteran³
Old
128 - 05-18-2011, 13:31
Reply With Quote
Quote:
Originally Posted by opsayo View Post
@lee: if you want to get the physics right I suggest you read everything andrew's written here:

Andrew - Tribes 1 Physics, Part One: Overview

i wouldn't expect him to lend you a minute of his time though
Very nice. Skimming through it for about 5 minutes I already have some of those features implemented on my own, I just need to tweak them to be closer to Tribes 1. The Skiing should be easy to implement too.

If I can I am going to do everything exactly the same, I want the physics to be exactly like T1.
 
leeleatherwood is offline
 
NoFiX
VeteranXV
Old
129 - 05-18-2011, 13:47
Reply With Quote
What he has there wouldn't directly apply to all engines. Not like you can copy and paste physics code, and expect it to feel exactly the same. Dumbest **** I've ever read.
 
NoFiX is offline
 
leeleatherwood
Veteran³
Old
130 - 05-18-2011, 14:03
Reply With Quote
Quote:
Originally Posted by NoFiX View Post
What he has there wouldn't directly apply to all engines. Not like you can copy and paste physics code, and expect it to feel exactly the same. Dumbest **** I've ever read.
Yeah i know, but it does help.

I can see that when jumping they add forward force also. Right now i currently only add upforce.

I wont be able to copy and paste is but still it will help alot. Infact alot of it is TOO simple, I would have to "dumb" my Playercharacter physics down alot if i wanted it to be spot on.

These are the following things ive noticed so far, which will help out alot to get the same T1 feel.

1. There is a difference in forward/backward force than sideways force.
2. They multiply the sideforce while using jets to give more lateral movement in the air, one thing i was having problems with but solved in a different way.
3. They jump by adding an impulse force. My way of jumping is just by translating the position up a certain amount.
4. Skiing is an effect of lowering friction the longer the player has been in the air, not by reducing friction a static amount.
 
leeleatherwood is offline
 
Last edited by leeleatherwood; 05-18-2011 at 14:26..
spockhammer
AlwaysCryingXX
Contributor
Old
131 - 05-18-2011, 14:24
Reply With Quote
ya i read that and laughed 2 but every1 is an andrew fanboy

also the dood used to answer emails a lot i havent tried recently tho
 
spockhammer is offline
 
Amadeus
VeteranXX
Old
132 - 05-18-2011, 15:00
Reply With Quote
Quote:
Originally Posted by leeleatherwood View Post
Yeah i know, but it does help.

I can see that when jumping they add forward force also. Right now i currently only add upforce.

I wont be able to copy and paste is but still it will help alot. Infact alot of it is TOO simple, I would have to "dumb" my Playercharacter physics down alot if i wanted it to be spot on.

These are the following things ive noticed so far, which will help out alot to get the same T1 feel.

1. There is a difference in forward/backward force than sideways force.
2. They multiply the sideforce while using jets to give more lateral movement in the air, one thing i was having problems with but solved in a different way.
3. They jump by adding an impulse force. My way of jumping is just by translating the position up a certain amount.
4. Skiing is an effect of lowering friction the longer the player has been in the air, not by reducing friction a static amount.
This is fantastic, the more you write the more clueless you sound.
 
Amadeus is offline
 
NoFiX
VeteranXV
Old
133 - 05-18-2011, 15:13
Reply With Quote
Pure anecdotal. If you know the ins/outs of the engine you're working with, I'll give you that, even then ... I'd be hard pressed to ever mutter the words of 'HERES T1 PHYSICS IN A JAR'.
 
NoFiX is offline
 
ChewSpitt
Banned
Old
134 - 05-18-2011, 16:07
Reply With Quote
Quote:
Originally Posted by Milk-Man View Post
needs lens flare and just a touch of motion blur.
 
ChewSpitt is offline
 
Milk-Man
VeteranXX
Old
135 - 05-18-2011, 16:13
Reply With Quote
k
 
Milk-Man is offline
 
hyung
VeteranXX
Old
136 - 05-18-2011, 16:30
Reply With Quote
yeah andrew was dumb

http://www.youtube.com/watch?v=zOcwJX-nNok

nofix hating and dare jumping on the bandwagon

i have little doubt that dare could not actually comprehend what he read (not that it was technical reading)
 
hyung is offline
 
Amadeus
VeteranXX
Old
137 - 05-18-2011, 16:37
Reply With Quote
Quote:
Originally Posted by opsayo View Post
yeah andrew was dumb

http://www.youtube.com/watch?v=zOcwJX-nNok

nofix hating and dare jumping on the bandwagon

i have little doubt that dare could not actually comprehend what he read (not that it was technical reading)
Not to put too fine a point on it, but the best you can gather from that video is what skiing looks like, now what it feels like.
 
Amadeus is offline
 
hyung
VeteranXX
Old
138 - 05-18-2011, 16:42
Reply With Quote
sure, but for people like dare to talk **** about that blog when it's a pretty good top level over view of the inner workings of tribes physics that are not readily apparent

well its just dumb
 
hyung is offline
 
[email protected]
VeteranX
Old
139 - 05-18-2011, 16:45
Reply With Quote
lma0
 
2good@tribes.com is offline
 
Leartime
Veteran
Old
140 - 05-18-2011, 16:46
Reply With Quote
 
Leartime is offline
 
Page 7 of 26
Reply


Go Back   TribalWar Forums > Current Gaming > Tribes Talk
Reload this Page Death Punch Studios filling positions.

Social Website Bullshit

Tags
odio is a child rapist , odio is a fucking retard , sticky thread


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off


AGENT: claudebot / Y
All times are GMT -4. The time now is 06:58.