随笔 - 5, 文章 - 0, 评论 - 24, 引用 - 0
数据加载中……

linux使用Ogre+SDL进行游戏开发

我选择的是ubuntu8.04 + codeblocks8.02的开发环境。
Ogre用的是1.4.5的版本。
下面是用SDL进行的一个简单的代码.
#include <Ogre.h>
#include 
<iostream>
#include 
<SDL/SDL.h>
#include 
<SDL/SDL_syswm.h>
#include 
<SDL/SDL_events.h>

using namespace std;
using namespace Ogre;
class AppListener : public FrameListener
{
public:
    AppListener( RenderWindow 
*_win ) : win( _win )
    {
    }
public:
    
bool frameStarted(const FrameEvent& evt)
    {
        
if ( !FrameListener::frameStarted( evt ) )
            
return false;

            SDL_PollEvent( 
&event );
        
return true;
    }
    
bool frameEnded(const FrameEvent& evt)
    {
        
if ( !FrameListener::frameEnded( evt ) )
            
return false;

        SDL_PollEvent( 
&event );
        
if ( event.type == SDL_KEYDOWN )
        {
            
if ( event.key.keysym.sym == SDLK_ESCAPE )
                
return false;
        }
        
return true;
    }
private:
    RenderWindow 
*win;
    SDL_Event 
event;
};
void parseWindowGeometry( Ogre::ConfigOptionMap& config, unsigned int& width, unsigned int& height, bool& fullscreen );
int main()
{
    Root 
*root = new Root( "plugins.cfg" );
    RenderWindow 
*win;

    
if ( !root->showConfigDialog() )
        
return 0;
    
if ( SDL_WasInit( SDL_INIT_VIDEO ) == 0 )
    {
        unsigned 
int height = 300, width = 400;
        
bool fullscreen;
        parseWindowGeometry( root
->getRenderSystem()->getConfigOptions(), width, height, fullscreen );

        root
->initialise( false );

        SDL_Init( SDL_INIT_VIDEO );
        SDL_SetVideoMode( width, height 
/ 200 );
        SDL_WM_SetCaption( 
"OgreTest""ogretest" );

        SDL_SysWMinfo info;
        SDL_VERSION(
&info.version);

        SDL_GetWMInfo(
&info);

        std::
string dsp(&(DisplayString(info.info.x11.display)[1]));
        std::vector
<Ogre::String> tokens = Ogre::StringUtil::split(dsp, ".");

        Ogre::NameValuePairList misc;
        std::
string s = Ogre::StringConverter::toString((long)info.info.x11.display);
        s 
+= ":" + tokens[1+":";
        s 
+= Ogre::StringConverter::toString((long)info.info.x11.window);
        misc[
"parentWindowHandle"= s;
        win 
= root->createRenderWindow("ogre", width, height, fullscreen, &misc);

        
///we need to set the window to be active by ourselves, since GLX by default sets it to false, but then activates it upon recieving some X event (which it will never recieve since we'll use SDL).
        
///see OgreGLXWindow.cpp
        win->setActive(true);
        win
->setAutoUpdated(true);
    }
    
else
    {
        win 
= root->initialise( true );
    }

    root
->addFrameListener( new AppListener( win ) );
    root
->startRendering();
    
return 0;
}

void parseWindowGeometry( Ogre::ConfigOptionMap& config, unsigned int& width, unsigned int& height, bool& fullscreen )
{
    Ogre::ConfigOptionMap::iterator opt 
= config.find( "Video Mode" );
    
if ( opt != config.end() )
    {
        Ogre::String val 
= opt->second.currentValue;
        Ogre::String::size_type pos 
= val.find( 'x' );
        
if ( pos != Ogre::String::npos )
        {
            width 
= Ogre::StringConverter::parseUnsignedInt( val.substr( 0, pos ) );
            height 
= Ogre::StringConverter::parseUnsignedInt( val.substr( pos + 1 ) );
        }

        opt 
= config.find( "Full Screen" );
        
if ( opt != config.end() )
        {
            fullscreen 
= ( opt->second.currentValue == "Yes" );
        }
    }
}
原理很简单。
图:


posted on 2008-10-19 17:11 brilyf 阅读(2715) 评论(8)  编辑 收藏 引用

评论

# re: linux使用Ogre+SDL进行游戏开发  回复  更多评论   

因为最近windows要黑屏的说法,所以才决定去linux下开发。
2008-10-19 17:13 | brilyf

# re: linux使用Ogre+SDL进行游戏开发  回复  更多评论   

It's prominent for you to remember though, you need to <a href="http://www.essaysprofessors.com">buy">http://www.essaysprofessors.com">buy term paper</a> or <a href="http://www.essaysprofessors.com">buy">http://www.essaysprofessors.com">buy research papers</a> just because a school isn't the best at everything doesn't mean it can't be the finest at a lot things. Essays blogs can bring more usefull for your creation you can also buy essay. But first of all, my indebtedness to this article, it has a expert instigation.
2010-06-15 01:32 | Cynthia34HARRISON

# re: linux使用Ogre+SDL进行游戏开发  回复  更多评论   

Yeah doubtless very
important for the primer it was pleasant to read about this good topic! If you need to get a great job firstofall you need resume writing. Study and don't forget - if you have to work and study at the same time, there arehotshots who are ready to aid you with your resume when you under time burden and looking for a great job.
2010-09-05 06:42 | resume service

# re: linux使用Ogre+SDL进行游戏开发  回复  更多评论   

I had a dream to make my own company, but I didn't have enough amount of money to do this. Thank heaven my close friend told to utilize the home loans (goodfinance-blog.com). Therefore I used the auto loan and made real my dream.
2012-06-09 10:44 | credit loans

# re: linux使用Ogre+SDL进行游戏开发  回复  更多评论   

When I want to make my weekly schedule not so tight, I phone agenicies that deal with paper writing and cooperate with expertpaper writer.
2012-08-17 22:52 | academic essays buy

只有注册用户登录后才能发表评论。
网站导航: 博客园   IT新闻   BlogJava   知识库   博问   管理