zoukankan      html  css  js  c++  java
  • 【转载】让你的OGRE demo也有loadingBar

    OGRE demo loadingBar

    做法:
    (1)先在你的demo主类头文件里加入
       #include "ExampleLoadingBar.h"
    (2)再在主类的protected域内加入data member:
       ExampleLoadingBar mLoadingBar;
    (3)再在主类的protected域内加入member function:
               void loadResources(void)
            {

                    mLoadingBar.start(mWindow, 1, 1, 0.75);

                    // Turn off rendering of everything except overlays
                    mSceneMgr->clearSpecialCaseRenderQueues();
                    mSceneMgr->addSpecialCaseRenderQueue(RENDER_QUEUE_OVERLAY);
                    mSceneMgr->setSpecialCaseRenderQueueMode(SceneManager::SCRQM_INCLUDE);
                    
                    // Initialise the rest of the resource groups, parse scripts etc
                    ResourceGroupManager::getSingleton().initialiseAllResourceGroups();
                    ResourceGroupManager::getSingleton().loadResourceGroup(
                            ResourceGroupManager::getSingleton().getWorldResourceGroupName(),
                            false, true);

                    // Back to full rendering
                    mSceneMgr->clearSpecialCaseRenderQueues();
                    mSceneMgr->setSpecialCaseRenderQueueMode(SceneManager::SCRQM_EXCLUDE);

                    mLoadingBar.finish();


            }
    释疑:
    在Demo的父类ExampleApplication中 loadResources如下实现:
            virtual void loadResources(void)
            {
                    // Initialise, parse scripts etc
                    ResourceGroupManager::getSingleton().initialiseAllResourceGroups();

            }
    这个被override后,里面的操作被包含了,如红色的所示。咱不会少做事,所以放心用吧

     

    转载地址:http://www.cnblogs.com/lancidie/archive/2011/06/18/2084428.html

  • 相关阅读:
    杂项收集,包括-发邮件、二维码生成、文件下载、压缩、导出excel
    SQL2008删除大量数据
    优秀程序设计的18大原则
    多线程基础
    SQL金典
    [读书笔记]高效程序员的45个习惯:敏捷开发修炼之道
    Unity 查找资源引用工具
    Unity自动生成各种机型分辨率效果工具
    Unity Editor模式 Invoke()函数 失效
    Unity 特效 粒子 自动播放
  • 原文地址:https://www.cnblogs.com/ylwn817/p/2612969.html
Copyright © 2011-2022 走看看