Changeset 2828 for GTP


Ignore:
Timestamp:
07/10/08 11:02:46 (16 years ago)
Author:
mattausch
Message:
 
Location:
GTP/trunk/App/Demos/Vis/FriendlyCulling/src
Files:
1 added
5 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/App/Demos/Vis/FriendlyCulling/src/Environment.cpp

    r2826 r2828  
    88{ 
    99 
    10 bool Environment::Read(const string &filename) 
     10 
     11bool Environment::GetFloatParam(std::string &str, float &val) const 
    1112{ 
     13        map<string, string>::const_iterator it = mParams.find(str); 
     14 
     15        if (it == mParams.end()) // parameter not found 
     16                return false; 
     17         
     18        val = (float)atof((*it).second.c_str()); 
     19 
    1220        return true; 
    1321} 
    1422 
    1523 
    16 void Environment::Init() 
     24bool Environment::GetIntParam(std::string &str, int &val) const 
    1725{ 
    18         /*mAssumedVisibleFrames; 
    19         mMaxBatchSize; 
     26        map<string, string>::const_iterator it = mParams.find(str); 
    2027 
    21         mTrianglesPerVirtualLeaf; 
     28        if (it == mParams.end()) // parameter not found 
     29                return false; 
     30         
     31        val = atoi((*it).second.c_str()); 
    2232 
    23         mKeyForwardMotion; 
    24         mKeyRotation; 
     33        return true; 
     34} 
    2535 
    26         mWinWidth; 
    27         mWinHeight; 
    2836 
    29         mPosition; 
    30 */ 
    31         mUseFullScreen = false; 
     37bool Environment::GetBoolParam(std::string &str, bool &val) const 
     38{ 
     39        map<string, string>::const_iterator it = mParams.find(str); 
     40 
     41        if (it == mParams.end()) // parameter not found 
     42                return false; 
     43         
     44        val = (bool)atoi((*it).second.c_str()); 
     45 
     46        return true; 
     47} 
     48 
     49 
     50bool Environment::GetVectorParam(std::string &str, Vector3 &val) const 
     51{ 
     52        map<string, string>::const_iterator it = mParams.find(str); 
     53 
     54        static vector<string> tokens; 
     55        tokens.clear(); 
     56 
     57        if (it == mParams.end()) // parameter not found 
     58                return false; 
     59         
     60        Tokenize((*it).second, tokens); 
     61 
     62        val.x = (float)atof(tokens[1].c_str()); 
     63        val.y = (float)atof(tokens[2].c_str()); 
     64        val.z = (float)atof(tokens[3].c_str()); 
     65 
     66        return true; 
     67} 
     68 
     69 
     70bool Environment::Read(const string &filename) 
     71{ 
     72        FILE *file; 
     73        if ((file = fopen(filename.c_str(), "rt")) == NULL) 
     74                return false; 
     75 
     76        char str[256]; 
     77 
     78        while (fgets(str, 256, file) != NULL) 
     79        { 
     80                static vector<string> tokens; 
     81                tokens.clear(); 
     82 
     83                Tokenize(str, tokens, "="); 
     84 
     85                // this line is a comment 
     86                if (tokens[0][0] == '#') 
     87                        continue; 
     88 
     89                // store parameter 
     90                mParams[tokens[0]] = tokens[1]; 
     91        } 
     92 
     93        return true; 
     94} 
     95 
     96 
     97void Environment::Tokenize(const string& str, 
     98                                                   vector<string> &tokens, 
     99                                                   const string &delim) const 
     100{ 
     101    // skip delimiters the string begins with 
     102    string::size_type lastPos = str.find_first_not_of(delim, 0); 
     103    // find next delimiter 
     104    string::size_type pos = str.find_first_of(delim, lastPos); 
     105 
     106        // find tokens until string has been completely parsed 
     107    while ((string::npos != pos) || (string::npos != lastPos)) 
     108    { 
     109        // add new token 
     110        tokens.push_back(str.substr(lastPos, pos - lastPos)); 
     111        // skip delimiters, go to start of next token 
     112        lastPos = str.find_first_not_of(delim, pos); 
     113        // found next delimiter 
     114        pos = str.find_first_of(delim, lastPos); 
     115    } 
    32116} 
    33117 
  • GTP/trunk/App/Demos/Vis/FriendlyCulling/src/Environment.h

    r2826 r2828  
    66#include <iostream> 
    77#include <fstream> 
     8#include <map> 
    89 
    910#include "common.h" 
     
    2324        */ 
    2425        bool Read(const std::string &filename); 
    25         /** Initialises the environment file with default values. 
     26 
     27        bool GetFloatParam(std::string &str, float &val) const; 
     28        bool GetIntParam(std::string &str, int &val) const; 
     29        bool GetVectorParam(std::string &str, Vector3 &val) const; 
     30        bool GetBoolParam(std::string &str, bool &val) const; 
     31 
     32protected: 
     33 
     34        /** Parse this string, return tokens separated by given delimiters 
    2635        */ 
    27         void Init(); 
     36        void Tokenize(const std::string& str, std::vector<std::string> &tokens, const std::string &delim = " ") const; 
    2837 
    29  
    30         ////////// 
    31         //-- members 
    32  
    33         int mAssumedVisibleFrames; 
    34         int mMaxBatchSize; 
    35  
    36         int mTrianglesPerVirtualLeaf; 
    37  
    38         /// these values get scaled with the frame rate 
    39         float mKeyForwardMotion; 
    40         float mKeyRotation; 
    41  
    42         int mWinWidth; 
    43         int mWinHeight; 
    44  
    45         Vector3 mPosition; 
    46         Vector3 mDirection; 
    47  
    48         bool mUseFullScreen; 
     38        std::map<std::string, std::string> mParams; 
    4939}; 
    5040 
  • GTP/trunk/App/Demos/Vis/FriendlyCulling/src/PerformanceGraph.cpp

    r2827 r2828  
    66mMaxData(maxData), mCurrentIdx(0) 
    77{ 
     8        mGraphColor[0] = 1.0f; 
     9        mGraphColor[1] = 0.0f; 
     10        mGraphColor[2] = 0.0f; 
    811} 
    912 
     
    8891        const float scaley = 1.0f / 50.0f; 
    8992 
    90         glColor4f(1.0f, 0, 0, 1.0f); 
     93        glColor3fv(mGraphColor); 
    9194 
    9295        glBegin(GL_LINE_STRIP); 
    93  
    94         //OUT1("data: " << mData.size()); 
    9596 
    9697        for (size_t i = 0; i < mData.size(); ++ i) 
     
    128129        mData.clear(); 
    129130} 
     131 
     132 
     133void PerformanceGraph::SetGraphColor(float *col) 
     134{ 
     135        mGraphColor[0] = col[0]; 
     136        mGraphColor[1] = col[1]; 
     137        mGraphColor[2] = col[2]; 
     138} 
  • GTP/trunk/App/Demos/Vis/FriendlyCulling/src/PerformanceGraph.h

    r2827 r2828  
    1818        void Reset(); 
    1919 
     20        void SetGraphColor(float *col); 
    2021 
    2122protected: 
     
    2930        int mMaxData; 
    3031        int mCurrentIdx; 
     32        float mGraphColor[3]; 
    3133}; 
    3234 
  • GTP/trunk/App/Demos/Vis/FriendlyCulling/src/chcdemo.cpp

    r2827 r2828  
    2828#include "glfont2.h" 
    2929#include "PerformanceGraph.h" 
     30#include "Environment.h" 
    3031 
    3132 
     
    3435 
    3536 
     37static Environment env; 
     38 
     39 
     40///////////// 
     41//-- textures 
    3642GLuint fbo; 
    3743 
     
    8490 
    8591/// these values get scaled with the frame rate 
    86 const static float keyForwardMotion = 30.0f; 
    87 const static float keyRotation = 1.5f; 
     92static float keyForwardMotion = 30.0f; 
     93static float keyRotation = 1.5f; 
    8894 
    8995/// elapsed time in milliseconds 
     
    103109 
    104110// rendertexture 
    105 const static int texWidth = 1024; 
    106 const static int texHeight = 768; 
    107 //const static int texWidth = 2048; 
    108 //const static int texHeight = 2048; 
     111static int texWidth = 1024; 
     112static int texHeight = 768; 
     113//static int texWidth = 2048; 
     114//static int texHeight = 2048; 
    109115 
    110116int renderedObjects = 0; 
     
    159165PerformanceGraph *perfGraph = NULL; 
    160166 
    161  
     167bool useFullScreen = false; 
     168 
     169 
     170// ssao number of samples 
    162171#define NUM_SAMPLES 8 
    163172 
     173// ssao random spherical samples 
    164174static float samples[NUM_SAMPLES * 2]; 
    165175 
     
    281291        int returnCode = 0; 
    282292 
     293        env.Read("src/default.env"); 
     294 
     295        env.GetIntParam(string("assumedVisibleFrames"), assumedVisibleFrames); 
     296        env.GetIntParam(string("maxBatchSize"), maxBatchSize); 
     297        env.GetIntParam(string("trianglesPerVirtualLeaf"), trianglesPerVirtualLeaf); 
     298 
     299        env.GetFloatParam(string("keyForwardMotion"), keyForwardMotion); 
     300        env.GetFloatParam(string("keyForwardMotion"), keyRotation); 
     301 
     302        env.GetIntParam(string("winWidth"), winWidth); 
     303        env.GetIntParam(string("winHeight"), winHeight); 
     304 
     305        env.GetBoolParam(string("useFullScreen"), useFullScreen); 
     306 
     307 
     308 
     309        /////////////////////////// 
     310 
    283311        camera = new Camera(winWidth, winHeight, fov); 
    284312        camera->SetNear(nearDist); 
     
    295323        glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGBA | GLUT_DEPTH); 
    296324 
    297 #if 1 
    298         glutCreateWindow("FriendlyCulling"); 
    299 #else 
    300         glutGameModeString( "1024x768:32@75" ); //the settings for fullscreen mode 
    301         glutEnterGameMode(); //set glut to fullscreen using the settings in the line above 
    302 #endif 
     325        if (!useFullScreen) 
     326                glutCreateWindow("FriendlyCulling"); 
     327        else 
     328        { 
     329                glutGameModeString( "1024x768:32@75" );  
     330                glutEnterGameMode();  
     331        } 
     332 
    303333        glutDisplayFunc(Display); 
    304334        glutKeyboardFunc(KeyBoard); 
     
    10641094                algTime = algTimer.Elapsedms(); 
    10651095                perfGraph->AddData(algTime); 
     1096 
     1097                /*float col[3]; 
     1098                switch (renderMode) 
     1099                { 
     1100                case RenderTraverser::CHCPLUSPLUS: 
     1101                        col[0] = 1.0f; col[1] = 0.0f; col[2] = 0.0f; 
     1102                        break; 
     1103                case RenderTraverser::CHC: 
     1104                        col[0] = 0.0f; col[1] = 1.0f; col[2] = 1.0f; 
     1105                        break; 
     1106                case RenderTraverser::STOP_AND_WAIT: 
     1107                        col[0] = 1.0f; col[1] = 1.0f; col[2] = 0.0f; 
     1108                        break; 
     1109                case RenderTraverser::CULL_FRUSTUM: 
     1110                        col[0] = 1.0f; col[1] = 0.0f; col[2] = 1.0f; 
     1111                        break; 
     1112                default: 
     1113                        col[0] = 1.0f; col[1] = 0.0f; col[2] = 0.0f; 
     1114                } 
     1115                perfGraph->SetGraphColor(col); 
     1116                */ 
    10661117                perfGraph->Draw(); 
    10671118        } 
Note: See TracChangeset for help on using the changeset viewer.