您的位置:首页 > 运维架构

NeHe OpenGL Lesson42 - Multiple Viewports

2012-08-17 09:18 253 查看




    This samples shows us how to create multiple views in one window. With OpenGL command glViewport, we could place our scene into any rectangle area on the window. Usually, we will set the view port to the size of the window or window client area. This will make one full window view display. With glviewport function, you could choose any rectangle area on a window to display your view. This command will take the left-bottom point as the original point, width goes along horizontally, and height goes along vertically.

 

 

 

Update OpenGL texture object dynamically

// tex_data contain RGB texture data
glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, width, height, GL_RGB, GL_UNSIGNED_BYTE, tex_data);


 

Create the maze texture data

Once you play a bit with the program, you will be curious about such maze texture created. Here is the main workflow:

a) At first, we will choose a random position (2i, 2j) as the start point;

b) Check all position at (2i, 2j) are filled with color, if all of them are filled with color, then the process finished, otherwise continue;

c) Check current position (2i, 2j) is a validate position (this position will not beyond the rectangle area and could turn around: could turn up or down, left or right ). If this is validate position, continue; otherwise, use a while loop to randomly pick up an empty position (2i, 2j); continue;

d) randomly find a turn direction; filled with the new direction { 4 possibility, (2i+1, 2j), (2i-1, 2j), (2i, 2j+1), (2i, 2j-1) }if we could turn along this direction, and move the position to a new position (2n, 2m) { 4 possibility, (2i+2, 2j), (2i-2, 2j), (2i, 2j+2), (2i, 2j-2)};

e) fill color to (2n, 2m);

f) go to step b).





maze imagemaze image without shading turn direction
 

The full source code could be found here.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: