Search found 25 matches

by Coolkat
Mon Apr 05, 2004 12:11 am
Forum: Beginners Help
Topic: Pointer problem
Replies: 6
Views: 463

instead of passing it as a variable.. you can make the variable (if it's defined in the class and not a method) a "friend" variable.. if you set the second class to be a "friend" class. but sending it as a param wont hurt. just for future refference.
by Coolkat
Thu Apr 01, 2004 9:26 pm
Forum: Beginners Help
Topic: c++ question
Replies: 1
Views: 282

try this: #include <iostream> #include <map> using namespace std; Template <class T> class TSingleton { public: TSingleton(); ~TSingleton(); private: static int something; }; int main() { map<int , TSingleton<T>> some_map; //do stuff with the map return 0; } that should be what your looking for
by Coolkat
Tue Mar 30, 2004 2:32 am
Forum: Beginners Help
Topic: FPS question
Replies: 5
Views: 572

yeah i am making this networked. not split screen.. thanks.. that helps a lot.. so just draw all the models but your own basically.. i can do that :P

thanks all.. i really like this Engine and it'll be great for my project.
by Coolkat
Tue Mar 30, 2004 12:03 am
Forum: Beginners Help
Topic: FPS question
Replies: 5
Views: 572

FPS question

hey.. im making an FPS game.. i can make it all fine and dandy and have it all work.. except i want to add a multiplayer aspect to the game. if two or more people are heading around the "world" or "level".. would the other players just see floating guns as the other players? how ...
by Coolkat
Mon Mar 29, 2004 10:36 pm
Forum: Beginners Help
Topic: help me please
Replies: 10
Views: 616

at first you need to pick what language you want to program the game in? Perl , Python , C/C++ , ASM *don't pick this.. please...* IrrEng is made to work with C/C++ but it can be made to work with other languages such as Python.. and ASM if you change everthying to extern.. complicated.. but anyway....
by Coolkat
Mon Mar 29, 2004 10:09 pm
Forum: Off-topic
Topic: DNS Check
Replies: 7
Views: 1570

what operating system are you using to set up your webserver? even if your ISP assigns you a dynamic IP you can change to a static IP using windows or linux servers. (it's easier to do in linux then in Windows). also, what webserver are you running? are you running Apache , IIS , what? did you set u...
by Coolkat
Mon Mar 29, 2004 9:54 pm
Forum: Beginners Help
Topic: GUI question
Replies: 5
Views: 546

so im guessing it matters the order in which you do ::drawall()... thanks a lot. hey.. here is another question. you know when you first popin a CD how the autorun program runs a startup program.. and for some programs (like Warcraft , 3D Studio Max , Photoshop) have a banner type image pop up in th...
by Coolkat
Mon Mar 29, 2004 9:01 pm
Forum: Beginners Help
Topic: GUI question
Replies: 5
Views: 546

GUI question

hey.. i doubt this is possible.. but i think it would be really neat if it was... if for the background of a GUI.. instead of just allowing BMPs.. you could allow a model. for example.. you have a model of a water fall and hills.. you could set up that as your background and the windows and buttons ...
by Coolkat
Sun Mar 28, 2004 6:12 pm
Forum: Open Discussion and Dev Announcements
Topic: feature suggestion
Replies: 1
Views: 541

feature suggestion

just a thought.. but it would be cool to change your mouse icon..

currently you can set the mouse's visibility or it's position.. but you should make it so you could change the mouse icon. if you are making a 3d application.. you don't want a 2d white mouse pointer..

just a thought.
by Coolkat
Sun Mar 28, 2004 2:01 am
Forum: Beginners Help
Topic: Audio Functions
Replies: 1
Views: 284

Audio Functions

maybe it's me.. but i looked and i didn't see any sound related functions. such as playing background music for levels or other audio files.. did i miss these functions or are there none?