Search found 195 matches

by torleif
Tue Jul 15, 2008 7:10 am
Forum: Off-topic
Topic: Import playstation models
Replies: 9
Views: 1073

No. Each playstation game uses it's own format to display meshes onscreen. There are, however, emulation tools & graphics memory capture applications that you can use to grab meshes while the game is running. This is a real hit-and-miss type capture. Results are usually bad. Playstation 2 emulat...
by torleif
Sun Jul 13, 2008 11:58 pm
Forum: Advanced Help
Topic: Adding new member function
Replies: 3
Views: 399

You may find extending the class more useful than modifying the source, as it means you need to have responsibility of two code bases (also the license of irrlict means you have to share your modified source). If you're a good coder and is adding functionality that other people will use, go for gold...
by torleif
Sun Jul 13, 2008 12:01 am
Forum: Advanced Help
Topic: SDL causes console to disappear [solved]
Replies: 2
Views: 635

Found the answer. By putting this before main: // This hack allows the SDL console to show in windows. #ifdef main #undef main #endif Other options include: #define NO_STDIO_REDIRECT #include <SDL/SDL.h> #include <SDL/SDL_mixer.h> // and: // put this after SDL_Init freopen(NULL,"w",stdout)...
by torleif
Sat Jul 12, 2008 5:56 am
Forum: Advanced Help
Topic: SDL causes console to disappear [solved]
Replies: 2
Views: 635

SDL causes console to disappear [solved]

I have integrated the latest SDL into my project to use for sound. It works well, however when it comes to: #include <SDL/SDL.h> //here #include <SDL/SDL_mixer.h> It causes the output console to not print anything, and is separated from the irrlicht engine itself. I'm guessing there is a precompilat...
by torleif
Wed Jul 09, 2008 10:05 am
Forum: FAQs, Tutorials, Howtos, and external tool lists
Topic: [DevC++] dll with directx 9.0c support available
Replies: 130
Views: 109597

fantastic work! :D
by torleif
Wed Jul 09, 2008 9:05 am
Forum: Off-topic
Topic: Lynx
Replies: 6
Views: 1173

I'm using start>run> 'cmd' > 'telnet irrlicht.sourceforge.net 80' > 'GET' But seriously, lynx is pretty awesome. If you have a stable server you can use screen command to open up pages and leave them there forever. I'm logged in on MSN, IRC and the web all the time, and I can log in anytime I want. ...
by torleif
Wed Jul 09, 2008 8:58 am
Forum: Off-topic
Topic: The Best Part of Application Development
Replies: 16
Views: 1936

As a programmer you will soon learn that the build will always fail or crash when your boss wants to see it The best coders that are out there don't spend their time coding . It's code test test test test coffee break test. RustyNail: It's never a good thing to throw code away. Write forks and combi...
by torleif
Wed Jul 09, 2008 8:10 am
Forum: Off-topic
Topic: What a genius really isn't ... yep, me. :-(
Replies: 14
Views: 2569

If math and programming aren't your thing, attack the problem from the art side. Study technical drawing, painting and writing and become become a master of photoshop and Illustrator in your own time. Even if you know how to write a hello world program and understand it, you are an asset to a compan...
by torleif
Wed Jul 09, 2008 7:47 am
Forum: Off-topic
Topic: publishing(solved)
Replies: 16
Views: 1912

I /r/equest a demo :D
by torleif
Wed Jul 09, 2008 7:45 am
Forum: Off-topic
Topic: Google Offices in Israel are AWESOME!
Replies: 15
Views: 1736

Googlers aren't paid to work, they're paid to think. Other people write their algorithms into code
by torleif
Wed Jul 09, 2008 7:38 am
Forum: Off-topic
Topic: I'm so bored I'm going to suicide
Replies: 25
Views: 3118

Write a small irrlicht game. Put it on your site.

Who knows, if you get lucky a game designer might pick it up and want to hire you, so you don't need to shoot people for a living :P
by torleif
Wed Jul 09, 2008 7:33 am
Forum: Off-topic
Topic: a cms i'm working on
Replies: 10
Views: 915

Looks fantastic. Does it use valid XHTML & CSS 2.1?
by torleif
Wed Jul 09, 2008 7:31 am
Forum: Off-topic
Topic: lost password - what to do
Replies: 10
Views: 951

I have also lost a p/w on another account, But I'm not too worried about it. It would be good to see it fixed
by torleif
Wed Jul 09, 2008 7:25 am
Forum: Game Programming
Topic: Adobe Flash clinet/c++ srver
Replies: 3
Views: 1955

Flash uses a very simple XML protocol. Just #include "sys/socket.h" and you should be able to write one in a page or so. If you run windows you can download a sys/socket from the web. I wrote my own in python and the basics only took a page, advanced things such as server rooms that took t...
by torleif
Tue Jul 01, 2008 8:29 am
Forum: Open Discussion and Dev Announcements
Topic: Irrlicht and the D Programming Language
Replies: 16
Views: 2850

Yep D is a good languaje, I made a research about this languaje when it was in its early days and I was impressed. But It seems that Microsoft is working on a language with similar characteristics, I think it is called C Omega lol, nice troll It's best to stick to industry languages, like C++ and j...