You should probably include more info, such as what you need(I.E. programmer, graphics, sound). As well as info on the project. Nobody wants to join a project that they don't know what is.
You are right.
Here are the specialists I am looking for:
Programmers who are good and know OpenGL in and out. The biggest must for programmers is summerization. e.g.
//Bad programmer
int flipbool(int someval) {
if(someval==1) //Try not to leave brackets. It is allowed
return 0; //but makes the source hard to read
else
return 1;
}
//Good programmer
bool FlipBool(bool var1) //At least use a naming standard
{
return 1-var1; //Saves cpu time and is easier to read
}
The code right now is a mutated version of the Stonehenge Engine. I removed all the functions, and just kept the writeString and writeChar functions. The object structures are the same without the script parts. Actually, I rewrote the engine's variable structures. But it came out to be identical because the Engine's code inspired me to organize the stuff in the same way.
The graphics and models:
Most of it will be ported from the Freespace 2 version.
The GUI will be changed a little. I will e-mail the code to anybody that wants it.
The game texture format is ".raw". The game model format is on the brink of confusion. I am planning to make a .asc type model format, but hex numbers. e.g.
0025.0000 = 0x00190000
You can't see the difference there, but by using hex, the models can be bigger. ABOUT 55536 UNITS BIGGER!
Also, the model can be scaled even more by the model header data. That's 55536*255 FYI.
I am going to start work on a dev list which will contain what the full functioning version of the game should do.
Tux wrote://Good programmer
bool FlipBool(bool var1) //At least use a naming standard
{
return 1-var1; //Saves cpu time and is easier to read
}
That's pretty horrible.
Saves CPU time: What CPU? What benchmark?
Easier to read: Is it? What's wrong with the ! operator? At least the first example is explicit in what it does; the second is more of a fudge.
These two functions aren't even equivalent. true is any non-zero value; false is zero. The second function is broken in C for any value other than zero or one (AFAIK bool in C++ is restricted to 0 and 1).
Personally I would go for the function function, modified slightly (even though this is a pointless example):
This is how it works gosh. Be glad the guys reply honestly. they could also say it's ok, and afterwards think "shall he do what he want, I don't mind". It is what I consider respect.
And it is as Tim says: the function which explicitly tests the variable for true or false in an if-clause is easier to read and you know upon reading it what it does. This can't be said of your proposal of "good programming style" which I consider to be merely a fuzzy hardly readable thing. Yes, you can obfuscate things in c. You can even do arithmetic opertions in conditions. But it is not professional to keep with an obfuscating style.
btw, in all my time at the programming courses and in business life I 've never been trained on shortening coding. I've been trained on structured, well readable coding style.
I have been busy finding out a formula. If it works out, the game will be more faster then the sin/cos rotation games. Most of them use vectors these days.
About the code shortening, no one teaches you. Just take a look at the Q2 source; it's a jungle in there!
Anyway, bye bye.
sin/cos is too slow. in all my demos i used tables for them. much quicker. less precise but LUT are much much faster than calling sin/cos themselves...
The old knowledge that a lookup table was always better is less solid with current CPUs. A LUT is only faster if you can fit it all in L1 cache; a cache miss can take far longer than the FSIN/FCOS instruction itself.
Instead of creating a table, I calculate values right away. It's still better then sin/cos. But my cur rotations function has some bugs and only uses y rotation and applies it to z and x. It would be helpful if someone can help me outhere. Thanks.
It is quite smooth, but has some formula defects. When the rotation is more then 360 because I have no code to reset it to 0, it becomes glitchy. That may be fixed easily.
Also: view is a struct
rot is the vertex structure
y is a float
I forgot to add that so far there is one problem. I draw a square in the front, when I get about 6 units to it, the aquare disappears. So to say, it doesn't draw stuff 6 units in front of me. (6 units is 6.00f) Because of this, I have trouble testing the rotation formula.