win a used geforce 5200 video card!!!@#!

Competitions for Irrlicht or 3D in general.
Irrlicht Screenshot of the Month: Winner for January, vote for February, submit for March
Post Reply
netpipe
Posts: 669
Joined: Fri Jun 06, 2008 12:50 pm
Location: Edmonton, Alberta, Canada
Contact:

win a used geforce 5200 video card!!!@#!

Post by netpipe »

looking for a simple interactive irrlicht demo that shows placement of 3d objects on a static plane. must provide source.

entry's will be judged on decembember 3rd

128 mb of ddr ram with tv-out and DVI
Virion
Competition winner
Posts: 2148
Joined: Mon Dec 18, 2006 5:04 am

Post by Virion »

I was using 5200 like... 4 years ago. I'm not sure if the prize is attractive enough...
devsh
Competition winner
Posts: 2057
Joined: Tue Dec 09, 2008 6:00 pm
Location: UK
Contact:

Post by devsh »

simply not attractive enough... i could do it

but im not wasting time

DIY!!!
gingerheadman
Posts: 18
Joined: Sat Oct 03, 2009 7:14 am
Location: Brisbane, Australia
Contact:

Post by gingerheadman »

I have to agree with the others, that isn't a particulally attractive prize.

I might still enter something anyway though.
My website - Miscreant Software
3DModelerMan
Posts: 1691
Joined: Sun May 18, 2008 9:42 pm

Post by 3DModelerMan »

Will it work on a laptop that has a few PCI bridges?
That would be illogical captain...

My first full game:
http://www.kongregate.com/games/3DModel ... tor#tipjar
devsh
Competition winner
Posts: 2057
Joined: Tue Dec 09, 2008 6:00 pm
Location: UK
Contact:

Post by devsh »

muahaha.... lol...
3D Ace
Posts: 66
Joined: Sun Oct 04, 2009 8:47 am
Location: Swakopmund, Namibia
Contact:

Post by 3D Ace »

A 5200?javascript:emoticon(':shock:') Rediculous. I once owned one back in 2003. :shock:
grumpymonkey
Posts: 222
Joined: Mon Jan 19, 2009 10:03 pm
Location: Miami, Florida
Contact:

Post by grumpymonkey »

shipping and handling? since most people live in other parts of the world youll most likely chargw for that..

whatever, Ill make a quick one right now without testing since this isnt really that hard:

Code: Select all

#include<irrlicht.h>
#pragma comment(lib, "Irrlicht.lib")
using namespace irr;
using namespace core;
using namespace video;
using namespace scene;

int main(){
    irrlichtDevice *device = createDevice(EDT_OPENGL); //create device with OpenGL
    ISceneManager *smgr = device->getSceneManager(); /*get scene manager for adding nodes*/
    IVideoDriver *video = device->getVideoDriver();  /*get video driver for rendering*/
    smgr->addCameraSceneNodeFPS(); /*Add FPS camera(built in for debuging)*/

ISceneNode *floor = smgr->addBoxSceneNode();  //Add the floor
floor->setScale(vector3df(10,1,10)); //scale it

ISceneNode *box1 = smgr->addBoxSceneNode(); //Add a box
box1->setPosition(vector3df(-15,0,-15)); //move it

ISceneNode *box2 = smgr->addBoxSceneNode(); //Add a box
box2->setPosition(vector3df(15,0,15)); //move it

ISceneNode *box3 = smgr->addBoxSceneNode();  //Add a box
box3->setPosition(vector3df(15,0,-15)); //move it

ISceneNode *box4 = smgr->addBoxSceneNode();  //Add a box
box4->setPosition(vector3df(-15,0,15)); //move it

while(device->run()){ //main loop of application
    video->beginScene(1,1,SColor(255,255,255,255)); //start rendering scene with white background
    smgr->drawAll(); //render all the nodes
    video->endScene(); //stop the rendering
}

return 0; //exit application
}
Thats really simple...infact theres probably an example for this included with the SDK
Image
Ulf
Posts: 281
Joined: Mon Jun 15, 2009 8:53 am
Location: Australia

Post by Ulf »

entry's will be judged on decembember 3rd
Grumpy Monkey, where were you 5 days ago? lol :lol:

Anyway, I'd rather buy a paddle pop and hope to win the lick-a-prize (a free paddle-pop)
I can hear birds chirping
:twisted:

I live in the Eye of Insanity.
randomMesh
Posts: 1186
Joined: Fri Dec 29, 2006 12:04 am

Post by randomMesh »

grumpymonkey wrote:

Code: Select all

#include<irrlicht.h>
#pragma comment(lib, "Irrlicht.lib")
using namespace irr;
using namespace core;
using namespace video;
using namespace scene;

int main(){
    irrlichtDevice *device = createDevice(EDT_OPENGL); //create device with OpenGL
    ISceneManager *smgr = device->getSceneManager(); /*get scene manager for adding nodes*/
    IVideoDriver *video = device->getVideoDriver();  /*get video driver for rendering*/
    smgr->addCameraSceneNodeFPS(); /*Add FPS camera(built in for debuging)*/

ISceneNode *floor = smgr->addBoxSceneNode();  //Add the floor
floor->setScale(vector3df(10,1,10)); //scale it

ISceneNode *box1 = smgr->addBoxSceneNode(); //Add a box
box1->setPosition(vector3df(-15,0,-15)); //move it

ISceneNode *box2 = smgr->addBoxSceneNode(); //Add a box
box2->setPosition(vector3df(15,0,15)); //move it

ISceneNode *box3 = smgr->addBoxSceneNode();  //Add a box
box3->setPosition(vector3df(15,0,-15)); //move it

ISceneNode *box4 = smgr->addBoxSceneNode();  //Add a box
box4->setPosition(vector3df(-15,0,15)); //move it

while(device->run()){ //main loop of application
    video->beginScene(1,1,SColor(255,255,255,255)); //start rendering scene with white background
    smgr->drawAll(); //render all the nodes
    video->endScene(); //stop the rendering
}

return 0; //exit application
}
How is that
tecan wrote:interactive
?
"Whoops..."
grumpymonkey
Posts: 222
Joined: Mon Jan 19, 2009 10:03 pm
Location: Miami, Florida
Contact:

Post by grumpymonkey »

How is that
tecan wrote:
interactive

?
the camera can move o.o
Image
randomMesh
Posts: 1186
Joined: Fri Dec 29, 2006 12:04 am

Post by randomMesh »

:lol:

I thought the task was to create a demo showing interactive placement of objects.
"Whoops..."
Post Reply