Tagged Questions

Ogre3d is an open source 3d graphics rendering engine.

learn more… | top users | synonyms

24
votes
10answers
1k views

Except OOP, what is making C++ better than C

Well that may sound like a troll question, but since C++ seems hard to fully master (and I never really knew STL was actually "part" of it), I wanted to know what are the disadvantages to use C ...
11
votes
1answer
2k views

Bullet Physics - Apply Torque Impulse in Body's Local Space

I'm currently evaluating the Bullet Physics Library for a 3D space game I'm writing using C++ and Ogre3D. I've gotten Ogre3D and Bullet integrated nicely by deriving from btMotionState and plugging in ...
7
votes
4answers
600 views

3D Game Programming in 2010 - Where to begin again?

I dabbled in some game programming a few years back. I got up to using Windows Xp, C++, Ogre3d, Visual Studio, and Blender. I started to make an RTS but then real life happened. Anyway, I'm looking ...
7
votes
2answers
1k views

Multi-monitor 3D Application

I've been challenged with a C++ 3D application project that will use 3 displays, each one rendering from a different camera. Recently I learned about Ogre3D but it's not clear if it supports output ...
5
votes
3answers
582 views

Is Ogre's use of Exceptions a good way of using them?

I've managed to get through my C++ game programming career so far virtually never touching exceptions but recently I've been working on a project with the Ogre engine and I'm trying to learn properly. ...
5
votes
3answers
952 views

3D game engine for networked world simulation / AI sandbox

More than 5 years ago I was playing with DirectSound and Direct3D and I found it really exciting although it took much time to get some good results with C++. I was a college student then. Now I have ...
4
votes
2answers
531 views

Android NDK with C++ Graphics Engine

I would like to use the C++ Graphics Engine (Ogre3D) I am familiar with to write some games for Droid (I just cannot get used to Java) and there are plenty of write ups on how to build the ...
3
votes
1answer
232 views

How to get a windowless application in Ogre?

I'm trying to create a windowless Ogre application, but it seems that the method RenderWindow::setVisible(false) is completely ignored by the application. Is there a way to accomplish that? Thank you ...
3
votes
1answer
941 views

How to use SDL with OGRE?

When I go to use OGRE with SDL (as described in this article), I seem to be having trouble with a second window that appears behind my main render window. Basically, the code I'm using is this: ...
3
votes
3answers
929 views

Asynchronous screen update to gameplay logic, C++

I am programming a game using Visual C++ 2008 Express and the Ogre3D sdk. My core gameplay logic is designed to run at 100 times/second. For simplicity, I'll say it's a method called 'gamelogic()'. ...
3
votes
8answers
2k views

Game Engine Scripting Languages

I am trying to build out a useful 3d game engine out of the Ogre3d rendering engine for mocking up some of the ideas i have come up with and have come to a bit of a crossroads. There are a number of ...
2
votes
1answer
107 views

obtain wrong RGB during creating dynamic texture in OGRE

Hi I have problem while I am trying to create dynamic texture to assign as a background in my ogre window. I want to assign values dynamicly for an each pixel of texture and then I use this texture as ...
2
votes
1answer
224 views

Ogre3d restoreConfig causes app to hang on Ubuntu

Building an app for Ubuntu using Ogre3D, CEGUI, OIS which is now all compiling and running as expected. Having got the basic app running I decided to now build a custom config file which I can store ...
2
votes
6answers
268 views

API General Questions and Choices

I've decided to start making graphical games. My language of choice is C++ and the only game I've made so far was a text based game based on Hunt the Wumpus which taught me fundamentals of game loops ...
1
vote
1answer
44 views

How can I get and change the framerate of OGRE application?

I am working on Ogre application that I set real time views as a background in my window. Hovewer I have question when I try to get my application's frame rate by using RenderTarget::getAverageFPS() ...
1
vote
2answers
116 views

Ogre 3d: RenderTexture bigger than RenderWindow

I have two ogre applications: 1) Sub application, that render to a window and to a texture (using same camera). The texture is "exported" to shared memory (shm in linux) 2) Main application, where a ...
1
vote
1answer
197 views

How to build OGRE on Windows using Visual Studio?

Hope that this helps a lot of people who struggle with installing OGRE on Windows. I did, and I don't want anyone else to go through the same amount of torture. I've tried to make this explanation ...
1
vote
0answers
62 views

How do I collect input from an external window using SDL?

I'm currently trying to re-write my binder between Ogre and SDL in my game engine. Originally I used the method outlined in the Ogre Wiki here. I recently updated my version of SDL to 1.3 and ...
1
vote
0answers
56 views

C# - FatalExecutionEngineError on OGRE3D Window Close (w/ SFML)

I'm using MOGRE, a C# binding of OGRE3D. I've created my own rendering loop and I use WindowEventUtilities.MessagePump() to update the window. This is my main application loop: while ...
1
vote
0answers
155 views

How are my arguments getting corrupted?

So I recently took it upon myself to learn Lua for the game project I'm working on(targeting Windows 7 using Visual Studio 2010 and the Ogre3D engine), at around the same time I started implementing ...
1
vote
2answers
176 views

problem with Fmod wrapper (soundManager) for Ogre3d

I have a problem with Soundmanager (class) (wrapper) for fmod in ogre3d engine. Here is the code just in case : ISoundManager.h If somebody wants I will upload it but I can't upload more than 2 ...
1
vote
1answer
111 views

Solution to “function 'floor' not support in this profile” in Ogre3D cg fragment shader

I am reading the book "Ogre3D 1.7 Beginngers guide".I writed a cg fragment shader but encountered the complier complain, "function 'floor' not support in this profile". The fragment shader definition ...
1
vote
1answer
307 views

How to fix Ogre3d segfault with std::_Rb_tree_insert_and_rebalance?

I'm working on a 3d music visualizer using Ogre3d, basically it's a spectrum analizer, a lot like the old xmms plugin: It works well, the bars are drawn and updated, there are no framerate issues, ...
1
vote
1answer
1k views

Linking to framework with cmake on Mac OS X

I'm attempting to link a program against ogre and a few other libraries on OS X using cmake, but I keep getting this error: ld: warning: directory '/Library/Frameworks/SDL.framework/Debug' following ...
1
vote
1answer
289 views

C++ Rotating a Vector in 3 Dimensions (Point) Into a Different Objects Space

I was working on a collision detection algorithms for an OBB algorithm and I've reached the point where it works but I am finding the lines equivalent in box space in a really ineffective way by means ...
1
vote
4answers
270 views

Unresolved External Symbol?

I am terrible at reading c++ errors, but obviously Unresolved External Symbol means the function I am using isn't defined. The error I am getting is... 1>WorldState.obj : error LNK2001: unresolved ...
1
vote
1answer
149 views

How do you set an objects Orientation to another objects in Ogre3D?

I tried do do this: Ogre::Vector3 src = bone1->_getDerivedOrientation() * Ogre::Vector3::UNIT_X; Ogre::Quaternion quatt = src.getRotationTo(bone2->_getDerivedOrientation() * ...
1
vote
1answer
178 views

Compiling Ogitor with mingw

I'm compiling program (Ogitor) from source with mingw. The program compilation configure by CMake (use boost, ogre). Last part of mingw32-make's log: ....... Info: resolving ...
1
vote
1answer
173 views

3d rendering of a surface from a depthmap

Using stereovision, I am producing depthmaps representing the 3d environment as viewed from a camera. There is one depthmap per "keyframe" associated with a camera position. The goal is to translate ...
1
vote
1answer
57 views

Mouse disappears on code break

I am using Ogre3D and sometimes when there is a break (or an exception) and it breaks into visual studio, my mouse cursor fails to appear. This is very annoying as most of the time I have to restart ...
1
vote
2answers
330 views

Visual Leak Detector Crash

I am using Visual Leak Detector to detect memory leaks in my program. When the program has finished running, I get an assertion triggered by the following code in utility.cpp. When Visual Leak ...
1
vote
3answers
402 views

Exception thrown when exiting program (Ogre3d)

I am getting a weird exception when I exit the program. This has started since today morning and I am ready to pull my hair out. As soon as I exit the program, visual studio gives an exception and ...
1
vote
1answer
118 views

Compiling a DLL which includes Ogre3D gives an assertion error when used

I have a framework that I am building and is being compiled into a static library to be used by other projects. The library works perfectly without issues. The problem is that the link time is very ...
1
vote
4answers
617 views

How best to deal with warning c4305 when type could change?

I'm using both Ogre and NxOgre, which both have a Real typedef that is either float or double depending on a compiler flag. This has resulted in most of our compiler warnings now being: warning ...
1
vote
1answer
56 views

Is there a way of combining Ogre3d's Hikari and BlazeDS?

I am trying to load a swf into an Ogre3d/Hikari application and that swf uses BlazeDS to communicate with a Tomcat server. The swf is from another project that is used in a browser environment. So, ...
1
vote
1answer
417 views

Create an grid array

Okay so I am looking to create a grided array in OGRE3D game engine but the array is generic my array skills are pretty basic and need work so I am posting this just to be sure I am doing this ...
1
vote
1answer
488 views

3D World to Local transformation

I am having a real headache trying to set a node's local position to match a given world position. I was given a solution but, AFAICS, it only takes into account orientation and position but NOT ...
1
vote
1answer
255 views

Enabling Direct3D-specific features (transparency AA)

I am trying to enable transparency antialiasing in my Ogre-Direct3D application, but it just won't work. HRESULT hres = d3dSystem->getDevice()->SetRenderState(D3DRS_ADAPTIVETESS_Y, ...
1
vote
1answer
66 views

Can't modify value returned by time.time() in Python code embedded in C++

I'm facing a very strange problem. The following code: import time target_time = time.time() + 30.0 doesn't work in Python code called from C++ (embedding)! target_time has the same value as ...
1
vote
2answers
1k views

'Difference' between two quaternions

I'm working in Ogre, but it's a general quaternion problem. I have an object, to which I apply a rotation quaternion Q1 initially. Later, I want to make it as if I initially rotated the object by a ...
1
vote
2answers
974 views

Detect Collision point between a mesh and a sphere?

I am writing a physics simulation using Ogre and MOC. I have a sphere that I shoot from the camera's position and it travels in the direction the camera is facing by using the camera's forward ...
1
vote
3answers
1k views

Integrate Custom Physics Classes with OGRE 3D?

I have to use OGRE3D for a university project however, we are not allowed to use any third party libraries for Physics or collision detection. This includes using OGRE's built in collision detection. ...
1
vote
3answers
210 views

Calculating how visible an object is in a 3D-scene for use in game logic/AI

I am starting a game project which will allow characters to hide in dark areas. Hiding in a dark corner should make it harder for other characters to see you. What I need is a way to calculate how ...
1
vote
1answer
492 views

Ogre3d Local reference string popping out of nowhere

I'm building an ogre3d tutorial based on this setup http://www.ogre3d.org/wiki/index.php/SettingUpAnApplication#XCode I've followed all steps as it says. It compiled perfectly. But on run this ...
0
votes
0answers
6 views

How can I create a SdkTrayManager without OIS::Mouse?

An OIS::Mouse is required to create a SdkTrayManager : (Constructor in SdkTray.h) SdkTrayManager(const Ogre::String& name, Ogre::RenderWindow* window, OIS::Mouse* mouse, SdkTrayListener* ...
0
votes
1answer
23 views

where in the Ogre3d framework should I add/delete dynamic objects?

I want to dynamically load and release objects based on location or time, without making the player wait. This small demo starts with one Sinbad model on a grass plane, and after 500 frames, switches ...
0
votes
1answer
37 views

Designing A 3D Editor

I want to design a visual editor which is Ogre and Qt based editor, I don't know which architecture pattern is better for it, any one have a good resource for designing such systems? It will be very ...
0
votes
1answer
51 views

Running Ogre3D in Ubuntu error

I have Ogre3D compiled and ready, the only issue is that when I go to test it, I get the following build output, and while it will compile, it simply just exits: Code Starting ...
0
votes
3answers
56 views

Ogre3d Error: cannot open file OgreMain_d.lib

Error 2 error LNK1104: cannot open file 'OgreMain_d.lib' C:\Users\Owner\Documents\Code\C++\Test\ogrevcpp\ogrevcpp\LINK ogrevcpp This is the error I get when trying to build an Ogre3D ...
0
votes
2answers
91 views

loadRawData Memory issue in ogre while load opencv frames

I am capturing images in real time using OpenCV, and I want to show these images in the OGRE window as a background. So, for each frame the background will change. I am trying to use MemoryDataStream ...

1 2