SphereWorld.cpp

作者分享了自己在学习OpenGL的过程中,面对时间有限、兴趣转移等挑战,并表达了决心要像以前一样深入学习,最终目标是在年末开发出一个像样的渲染器。文中详细介绍了创建渲染器所需的一些关键代码和步骤,包括初始化、设置视口、透视投影、模型视图矩阵操作等。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

  话说最近堕落了,明知道要好好学OPENGL,却每天看书也就一个小时.下班后先打篮球,之后吃饭,回到住处一般都要21点了.确实时间也不是很多.我想说,还要陪女朋友...

  还是要像以前学东西时一样,不管看起来多么简单的东西,都要写代码写一遍,会了再说.所以,现在有电脑了.就更要努力了,要在年末写出一个像样的渲染器呢,要加油了`

  白天的工作做得还好,有时一天也没做什么,有时一天做了很多.做到现在这个阶段,很多东西更要做细了,毕竟是在做产品,要想的东西还是很多,高瞻远瞩的眼光是要有的,不然将来遭罪的是我们,而且也对不起信任我的人.

  贴吧,之后睡觉了.

//	SphereWorld.cpp

#include "stdafx.h"
#include <GLShaderManager.h>
#include <GLFrustum.h>
#include <GLBatch.h>
#include <GLMatrixStack.h>
#include <GLGeometryTransform.h>
#include <StopWatch.h>
#include <math.h>
#include <GL/glut.h>

GLShaderManager shaderManager ;
GLMatrixStack modelViewMatrix ;
GLMatrixStack projectionMatrix ;
GLFrustum viewFrustum ;
GLGeometryTransform transformPipeline ;
GLTriangleBatch torusBatch ;
GLBatch floorBatch ;

void SetupRC()
{
	shaderManager.InitializeStockShaders() ;

	glEnable(GL_DEPTH_TEST) ;
	glPolygonMode(GL_FRONT_AND_BACK, GL_RGB) ;

	glClearColor(0, 0, 0, 1) ;

	gltMakeTorus(torusBatch, 0.4, 0.15, 30, 30) ;

	floorBatch.Begin(GL_LINES, 324) ;
	{
		for(GLfloat x = -20.0; x <= 20.0f; x+= 0.5)
		{
			floorBatch.Vertex3f(x, -0.55f, 20.0f);
			floorBatch.Vertex3f(x, -0.55f, -20.0f);
        
			floorBatch.Vertex3f(20.0f, -0.55f, x);
			floorBatch.Vertex3f(-20.0f, -0.55f, x);
		}
	}
    floorBatch.End();    
}

void ChangeSize(int width, int height)
{
	glViewport(0, 0, width, height) ;

	viewFrustum.SetPerspective(35, (float)width / height, 1, 100) ;
	projectionMatrix.LoadMatrix(viewFrustum.GetProjectionMatrix()) ;

	transformPipeline.SetMatrixStacks(modelViewMatrix, projectionMatrix) ;
}

void RenderScene(void)
{
	static GLfloat floorColor[] = {0, 1, 0, 1} ;
	static GLfloat torusColor[] = {1, 0, 0, 1} ;
	
	static CStopWatch rotTimer ;
	float yRot = rotTimer.GetElapsedSeconds() * 60 ;

	glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT) ;

	modelViewMatrix.PushMatrix() ;

	shaderManager.UseStockShader(GLT_SHADER_FLAT,
		transformPipeline.GetModelViewProjectionMatrix(),
		floorColor) ;

	floorBatch.Draw() ;

	modelViewMatrix.Translate(0, 0, -2.5) ;
	modelViewMatrix.Rotate(yRot, 0, 1, 0) ;
	shaderManager.UseStockShader(GLT_SHADER_FLAT,
		transformPipeline.GetModelViewProjectionMatrix(),
		torusColor) ;

	torusBatch.Draw() ;

	modelViewMatrix.PopMatrix() ;

	glutSwapBuffers() ;

	glutPostRedisplay() ;
}

int main (int argc, char* argv[])
{
	gltSetWorkingDirectory(argv[0]) ;

	glutInit(&argc, argv) ;
	glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGB | GLUT_DEPTH) ;
	glutInitWindowSize(800, 600) ;

	glutCreateWindow("Sphere World") ;

	glutReshapeFunc(ChangeSize) ;
	glutDisplayFunc(RenderScene) ;

	GLenum err = glewInit() ;

	SetupRC() ;
	glutMainLoop() ;

	return 0 ;
}


 

评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值