What are you currently working on?

A place for Ogre users to discuss non-Ogre subjects with friends from the community.
User avatar
mkultra333
Gold Sponsor
Gold Sponsor
Posts: 1894
Joined: Sun Mar 08, 2009 5:25 am
x 116

Re: What are you currently working on?

Post by mkultra333 »

After a lot of dead ends, mis-starts and grappling with the pickle matrix, I think I've finally got the basics of my transparency sorted. I wanted glass that had a bit of a surface to it, so that you could see light and shadow on the glass itself, and I wanted light shining through the glass to be coloured by it.

Here is my first working result.

Image

Image
"In theory there is no difference between practice and theory. In practice, there is." - Psychology Textbook.
User avatar
Shockeye
Gremlin
Posts: 154
Joined: Mon Nov 24, 2008 10:34 am
Location: 'Straya
x 1

Re: What are you currently working on?

Post by Shockeye »

mkultra333 wrote:... and grappling with the pickle matrix,
classic Frink :lol:

Nice stained glass, you could make a great cathedral scene
stephenmorphey

Re: What are you currently working on?

Post by stephenmorphey »

SPAM blah-blah-SPAM-blah SPAM
User avatar
wacom
Gnome
Posts: 350
Joined: Sun Feb 10, 2008 2:07 pm

Re: What are you currently working on?

Post by wacom »

stephenmorphey wrote: I am a student of computer engineering and in the final semester. I am currently working on a project. The project is on customer relationship management system and it is built over .NET language.
Currently I have to work on Admin side. Admin has all rights to insering, deleting or updating any data. After few days I will have to work on Client side in the project. It is my project's requirement. I am enjoying a lot in this project work.
And as a side project, you're spamming in forums?
User avatar
betajaen
OGRE Moderator
OGRE Moderator
Posts: 3447
Joined: Mon Jul 18, 2005 4:15 pm
Location: Wales, UK
x 58
Contact:

Re: What are you currently working on?

Post by betajaen »

wacom wrote:And as a side project, you're spamming in forums?
(In before spammy post gets deleted)

I suspect spamming is his part time job to help with tuition. The local supermarket had no jobs I guess.
User avatar
Kojack
OGRE Moderator
OGRE Moderator
Posts: 7157
Joined: Sun Jan 25, 2004 7:35 am
Location: Brisbane, Australia
x 538

Re: What are you currently working on?

Post by Kojack »

All 3 of his posts are kind of on topic, so for the moment I've wiped his signature link. Let's see if he makes another post...
(all these recent camouflage spams seem to make 3 posts)
User avatar
nullsquared
Old One
Posts: 3245
Joined: Tue Apr 24, 2007 8:23 pm
Location: NY, NY, USA
x 11

Re: What are you currently working on?

Post by nullsquared »

Kojack wrote:All 3 of his posts are kind of on topic, so for the moment I've wiped his signature link. Let's see if he makes another post...
(all these recent camouflage spams seem to make 3 posts)
Ahaha I PM'd xavier about it but I guess I'm not the only one who noticed the carefuly crafted posts :mrgreen:
User avatar
DanielSefton
Ogre Magi
Posts: 1235
Joined: Fri Oct 26, 2007 12:36 am
Location: Mountain View, CA
x 10
Contact:

Re: What are you currently working on?

Post by DanielSefton »

Kojack wrote:All 3 of his posts are kind of on topic, so for the moment I've wiped his signature link. Let's see if he makes another post...
Problem with that is he might return later and edit his sig again, and we'd never know. I think what they're trying to do is get their links indexed by Google - hoping that these 'intelligent' posts are forgotten about and the link remains there to be spidered.

I guess it would be interesting to see what happens. :P
User avatar
jacmoe
OGRE Retired Moderator
OGRE Retired Moderator
Posts: 20570
Joined: Thu Jan 22, 2004 10:13 am
Location: Denmark
x 179
Contact:

Re: What are you currently working on?

Post by jacmoe »

Well, if he had a signature, and it pointed to somewhere non-kosher, I get rid of him.
I killed spammer for far less - that his three first posts were in off-topic is reason enough for me! :twisted:
He's gone..
/* Less noise. More signal. */
Ogitor Scenebuilder - powered by Ogre, presented by Qt, fueled by Passion.
OgreAddons - the Ogre code suppository.
User avatar
mkultra333
Gold Sponsor
Gold Sponsor
Posts: 1894
Joined: Sun Mar 08, 2009 5:25 am
x 116

Re: What are you currently working on?

Post by mkultra333 »

I finally got deferred shading and emissive working in my project. I would have had it sooner, but an unrelated bug in my version of GtkRadiant meant I suddenly had no custom editor. I eventually found DarkRadiant and modified that, took a while but finally back on track.

Here's a pic.

Image

The four lights in the centre are non-shadowing deferred lights. They are rendered using bounding boxes rather than quads. The bounding box is in the world and limits the deferred light to only illuminating in the box, so I don't have to worry about them going through walls.

My system is a hybrid of deferred and forward rendering, you can see some forward rendered shadowing spotlights in the image too, on the left there's just a little of one that is passing through glass and becoming coloured by it. Alas the deferred lights don't add shine to glass at the moment although the shadowing spotlights do. I may work on that.
"In theory there is no difference between practice and theory. In practice, there is." - Psychology Textbook.
kierenj
Gnoblar
Posts: 24
Joined: Mon Sep 28, 2009 9:01 pm

Re: What are you currently working on?

Post by kierenj »

I have what I think is a decent game engine in development.

By game engine I mean: it runs on a server (or anywhere else) which has a number of zones (bounded by 2d rectangles), which have 'spatial nodes' which manage objects near them. Everything is represented by an object, which may have a position (in which case it belongs to a spatial node) within the server ('domain'), and you can hook up multiple domains on the same/different machines. Communication is multithreaded, cross-domain and is done with 'queues'.

There's an elegant object system whereby you can 'connect' to an object on a remote domain and some of its properties (which you define) are automatically updated from the server and rendered by the client. There's lots more in there too, like pathfinding: all handled with events which are bounced between objects in an efficient manner before a response is sent to the desired queue on the target domain. Also has an Observer model: you can connect to a domain, update your observer position and radius, and you will automatically have local proxy objects instantiated on the client domain for whatever might be near you.

Combined with the elegance of C# through the use of a little Reflection and some good OO design, you define a base class which represents your type of object whether its local or remote, derive from it to implement server-side behaviour, and create a class which implements IRenderer to render it on the client. All in all, perfect for online multiplayer games :)

At the moment it's running a small demo: some 'actors' path randomly around a 16km2 world with a few thousand obstacles on the server. When a client connects, they can control up to 3 units (pathing them around), explore what there is of the world.

It's pretty cool if I do say so myself, and I post here boastfully, unashamedly. I'm very proud I've stuck with it this long (just a couple of months.. but that's good for me)..
User avatar
KungFooMasta
OGRE Contributor
OGRE Contributor
Posts: 2087
Joined: Thu Mar 03, 2005 7:11 am
Location: WA, USA
x 16
Contact:

Re: What are you currently working on?

Post by KungFooMasta »

All those claims without any screenshots? :?
Creator of QuickGUI!
kierenj
Gnoblar
Posts: 24
Joined: Mon Sep 28, 2009 9:01 pm

Re: What are you currently working on?

Post by kierenj »

Can do, only working on the client now, so as I said it's plain world (think Plane) with obstacles (think spheres) with Actors pathing around (think Robot meshes). Well see attachment anyway, a couple of days out of date.

Can do screenshots of the class hierarchy, or console output of the server, :), but most of the work is about creating an accessible, expandable virtual world. Don't know what kind of claim I made that might need something to back it up but I will be happy to oblige.. ..!


P.S. If anyone at all can help with my problem that would be great...: http://ogre3d.org/forums/viewtopic.php?f=2&t=52789
Attachments
image002.jpg
image002.jpg (66 KiB) Viewed 3814 times
User avatar
benn
Gnoblar
Posts: 19
Joined: Mon Apr 18, 2005 12:38 pm

Re: What are you currently working on?

Post by benn »

I'm building a client/server world with qt and ogre. It downloads models via http, interpolates positional updates and is scriptable using qtscript.

Now witness the power of this fully functional battlecruiser:
Attachments
Picture 1.png
Picture 1.png (137.01 KiB) Viewed 3800 times
https://www.cryptovoxels.com/ - Virtual World built on Ethereum
User avatar
wacom
Gnome
Posts: 350
Joined: Sun Feb 10, 2008 2:07 pm

Re: What are you currently working on?

Post by wacom »

I'm trying to build a little game with OGRE and Bullet. It's about gravity manipulation and I started it before I knew anything about Quanta. ;)

Image

These are test graphics only.
User avatar
merlinblack
Goblin
Posts: 224
Joined: Thu Mar 15, 2007 10:05 am
Location: Sydney, Australia
x 7
Contact:

Re: What are you currently working on?

Post by merlinblack »

I'm making a very simple multi-player FPS, in the style of Doom 2 with Monty Python infulences, but actual 3d rather than 2.5d. Levels are mostly static except for doors, and lifts. Doing it as a hobby, for something to play at work during Lunch (we still play a lot of a Doom2 clone, and I've made several maps that resemble our office, and Hydro-electric plant.) Having a lot of fun doing it :D , and its keeping my C++ skills alive, as being a half db admin, half DEC Unix lacky doesn't call for C++ that often :?

I don't have much yet, but you can run around as a Ninja or Robot so far. I'm playing around with light mapping at present.

I've also just finished as a side project, making a Lua in game console, which I've plonked in the wiki. :)
"He'd never realized that, deep down inside, what he really wanted to do was make things go splat."
Terry Pratchett, Reaper Man
Image
User avatar
Praetorian
Google Summer of Code Student
Google Summer of Code Student
Posts: 171
Joined: Fri Aug 10, 2007 10:37 pm
Location: WA - USA
x 5

Re: What are you currently working on?

Post by Praetorian »

wacom wrote:I'm trying to build a little game with OGRE and Bullet. It's about gravity manipulation and I started it before I knew anything about Quanta. ;)
haha, looks like I have some competition! :twisted: It's a fun mechanic to mess around with, isn't it? :D
My Google summer of code 2011 topic: Unit Testing Framework
My Google summer of code thread
My Google summer of code wiki page
User avatar
lonewolff
Ogre Magi
Posts: 1207
Joined: Wed Dec 28, 2005 12:58 am
x 6

Re: What are you currently working on?

Post by lonewolff »

I am currently working on a mini 3D world (approx 1km x 1km). As, I haven't really finished any major projects yet.
Just the usual basic stuff, terrain, animation, etc.

If it gets far enough, I plan on using it as a basis for a networked environment. :D
Post Reply