Simple Ogre3D Animation Viewer [Full Source Code Available]

A place to show off your latest screenshots and for people to comment on them. Only start a new thread here if you have some nice images to show off!
User avatar
seenooh
Gnoblar
Posts: 2
Joined: Wed Nov 20, 2013 3:03 pm
Location: Kingdom of Bahrain / Middle East
x 2

Simple Ogre3D Animation Viewer [Full Source Code Available]

Post by seenooh »

Greetings,

I was always fascinated by those great 3D tools and curious about their development. Finally when I had some time, I tackled the topic of Tools Programming by researching and doing small experiments until I felt being ready to do a small complete application for my learning experience purposes. So I chose to do a very basic Animation Viewer tool based on Ogre’s 3D rendering engine. In this experiment, I wanted to learn how to use WinForms C# for the tool’s UI and how to invoke unmanaged code from a C++ application that talks with Ogre3D. It took me 15 working days to wrap up the tool (including the learning curve to familiarize myself enough with Ogre3D in order to finish the requirements of this tool). This was a great learning experience to me, so I decided to share the source code for those who had similar curiosities and wanted an initial push.

[youtube]btqI9Ot6XjE[/youtube]

Here's the link to download the binary and/or full source code (+ some instructions): http://www.alhasanstudio.com/?portfolio ... ion-viewer

By the way, I do realize that there is a complete wrapper for C# (Mogre) that I could use and I do realize that there are much better "Viewer" tools already done in the wiki, but this was for me an excersice to understand the wrapping process.

Hope this helps!
Last edited by seenooh on Thu Nov 21, 2013 8:25 am, edited 1 time in total.
User avatar
areay
Bugbear
Posts: 819
Joined: Wed May 05, 2010 4:59 am
Location: Auckland, NZ
x 69

Re: Simple Ogre3D Animation Viewer

Post by areay »

Good stuff, I've sent the link to my art guy to give it a try.
User avatar
mkultra333
Gold Sponsor
Gold Sponsor
Posts: 1894
Joined: Sun Mar 08, 2009 5:25 am
x 116

Re: Simple Ogre3D Animation Viewer

Post by mkultra333 »

Looks great, doubly so for the fast development time.
"In theory there is no difference between practice and theory. In practice, there is." - Psychology Textbook.
User avatar
seenooh
Gnoblar
Posts: 2
Joined: Wed Nov 20, 2013 3:03 pm
Location: Kingdom of Bahrain / Middle East
x 2

Re: Simple Ogre3D Animation Viewer

Post by seenooh »

Thanks guys! Hope this helps. :)
mkultra333 wrote:Looks great, doubly so for the fast development time.
It's due to the wealth of information found in the wiki, books or the community. Every obstacle I faced had a solution available in the forums when I search. So it was pretty smooth.