arturo02
09-03-2009 11:30:48
Hi everyone,
Im trying to put two RenderWindow in a windows form,I'm trying with this code but it don't work
Ithink that the problems is that the two windows are in the same place, but I don't know how to move this in the windows form
thank you
Im trying to put two RenderWindow in a windows form,I'm trying with this code but it don't work
public partial class OgreForm : Form
{
Root mRoot;
RenderWindow mWindow;
RenderWindow mWindow2;
public OgreForm()
{
InitializeComponent();
this.Size = new Size(1600, 600);
Disposed += new EventHandler(OgreForm_Disposed);
Resize += new EventHandler(OgreForm_Resize);
}
void OgreForm_Disposed(object sender, EventArgs e)
{
mRoot.Dispose();
mRoot = null;
}
void OgreForm_Resize(object sender, EventArgs e)
{
mWindow.WindowMovedOrResized();
mWindow2.WindowMovedOrResized();
}
public void Go()
{
Show();
while (mRoot != null && mRoot.RenderOneFrame())
Application.DoEvents();
}
public void Init()
{
// Create root object
mRoot = new Root();
// Define Resources
ConfigFile cf = new ConfigFile();
cf.Load("resources.cfg", "\t:=", true);
ConfigFile.SectionIterator seci = cf.GetSectionIterator();
String secName, typeName, archName;
while (seci.MoveNext())
{
secName = seci.CurrentKey;
ConfigFile.SettingsMultiMap settings = seci.Current;
foreach (KeyValuePair<string, string> pair in settings)
{
typeName = pair.Key;
archName = pair.Value;
ResourceGroupManager.Singleton.AddResourceLocation(archName, typeName, secName);
}
}
// Setup RenderSystem
RenderSystem rs = mRoot.GetRenderSystemByName("Direct3D9 Rendering Subsystem");
// or use "OpenGL Rendering Subsystem"
mRoot.RenderSystem = rs;
rs.SetConfigOption("Full Screen", "No");
rs.SetConfigOption("Video Mode", "800 x 600 @ 32-bit colour");
// Create Render Window
mRoot.Initialise(false, "Main Ogre Window");
NameValuePairList misc = new NameValuePairList();
misc["externalWindowHandle"] = Handle.ToString();
mWindow = mRoot.CreateRenderWindow("Right RenderWindow", 800, 600, false, misc);
mWindow2 = mRoot.CreateRenderWindow("Left RenderWindow", 800, 600, false, misc);
Ithink that the problems is that the two windows are in the same place, but I don't know how to move this in the windows form
thank you