You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

196 lines
6.1 KiB

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. #include <windows.h>
  2. #include "glew.h"
  3. #include "Glm/glm.hpp"
  4. #include "Glm/ext.hpp"
  5. #include <stdio.h>
  6. #include "misc.h"
  7. #include "model.h"
  8. #include "timer.h"
  9. #pragma comment(lib,"opengl32.lib")
  10. #pragma comment(lib, "glew32.lib")
  11. /**
  12. * @hwnd ϢĴ
  13. * @msg Ϣ
  14. */
  15. LRESULT CALLBACK GLWindowProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) {
  16. switch (msg) {
  17. case WM_CLOSE:
  18. PostQuitMessage(0);
  19. return 0;
  20. }
  21. return DefWindowProc(hwnd, msg, wParam, lParam);//������Ϣ����windowĬ�ϴ�������
  22. }
  23. /**
  24. * @hinstance Ӧóʵ
  25. * @hPrevInstance һӦóʽʵ
  26. * @IpCmdLine еIJ
  27. * @ShowCmd ôʾ
  28. */
  29. INT WINAPI WinMain(HINSTANCE hinstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nShowCmd)
  30. {
  31. /*ע�ᴰ��*/
  32. WNDCLASSEX wndclass;
  33. wndclass.cbClsExtra = 0; //�������͵Ķ����ռ䣬���ﲻ��Ҫ
  34. wndclass.cbSize = sizeof(WNDCLASSEX); //����ʵ��ռ�õ��ڴ�
  35. wndclass.cbWndExtra = 0; //���ڵĶ����ռ䣬���ﲻ��Ҫ
  36. wndclass.hbrBackground = NULL; //���ڱ���
  37. wndclass.hCursor = LoadCursor(NULL, IDC_ARROW); //������������
  38. wndclass.hIcon = NULL; //Ӧ�ó���exe�ļ���ʾͼ��
  39. wndclass.hIconSm = NULL; //Ӧ�ó�������ʱ���Ͻ�ͼ��
  40. wndclass.hInstance = hinstance; //��Ӧ�ó���ʵ��
  41. wndclass.lpfnWndProc = GLWindowProc; //�����û������˴��ڣ��������ᱻ����
  42. wndclass.lpszClassName = L"GLWindow";//��������
  43. wndclass.lpszMenuName = NULL;//�˵�����
  44. wndclass.style = CS_VREDRAW | CS_HREDRAW;//���ڸ���ʱ���ػ淽ʽ������ʹ�ô�ֱ�ػ���ˮƽ�ػ�
  45. ATOM atom = RegisterClassEx(&wndclass);
  46. if (!atom) {
  47. MessageBox(NULL, L"Register failed", L"Error", MB_OK);
  48. return 0;
  49. }
  50. /*��������*/
  51. int windowWidth = 800;
  52. int windowHeight = 600;
  53. RECT rect;
  54. rect.left = 0;
  55. rect.right = windowWidth;
  56. rect.bottom = windowHeight;
  57. rect.top = 0;
  58. AdjustWindowRect(&rect, WS_OVERLAPPEDWINDOW, false);
  59. //��������һ��Ҫ�͸ղ�ע�ᴰ�ڵı���һ��
  60. HWND hwnd = CreateWindowEx(NULL, L"GLWindow", L"OpenGL Window", WS_OVERLAPPEDWINDOW, 100, 100, windowWidth, windowHeight, NULL, NULL, hinstance, NULL);
  61. //������Ⱦ����
  62. HDC dc = GetDC(hwnd);//��ȡ�豸������
  63. PIXELFORMATDESCRIPTOR pfd;
  64. memset(&pfd, 0, sizeof(PIXELFORMATDESCRIPTOR));
  65. pfd.nVersion = 1;
  66. pfd.nSize = sizeof(PIXELFORMATDESCRIPTOR);
  67. pfd.cColorBits = 32; //��ɫ������ÿ������Ϊ32����4ͨ��RGBA
  68. pfd.cDepthBits = 24; //���Ȼ�����ÿ�����ش�С��24���ر�ʾһ��������
  69. pfd.cStencilBits = 8; //�ɰ建����ÿ����Ϊ8����
  70. pfd.iPixelType = PFD_TYPE_RGBA; //������������ΪRGBA
  71. pfd.dwFlags = PFD_DRAW_TO_WINDOW | PFD_SUPPORT_OPENGL | PFD_DOUBLEBUFFER; //��ʾ������������������
  72. //�������ظ�ʽ
  73. int pixelFormat = ChoosePixelFormat(dc, &pfd);
  74. SetPixelFormat(dc, pixelFormat, &pfd);
  75. //����OpenGL��Ⱦ����
  76. HGLRC rc = wglCreateContext(dc);
  77. wglMakeCurrent(dc, rc);//����OpenGL��Ⱦ������Ч
  78. /*glew��ʼ��*/
  79. glewInit();
  80. /*����program*/
  81. GLuint program = CreateGPUProgram("res/shader/UI FullScreemQuad.vs", "res/shader/UI.fs");
  82. GLuint posLocation, texcoordLocation, normalLocation, MLocation, VLocation, PLocation, NMLocation, textureLocation;
  83. posLocation = glGetAttribLocation(program, "pos");
  84. texcoordLocation = glGetAttribLocation(program, "texcoord");
  85. normalLocation = glGetAttribLocation(program, "normal");
  86. MLocation = glGetUniformLocation(program, "M");
  87. VLocation = glGetUniformLocation(program, "V");
  88. PLocation = glGetUniformLocation(program, "P");
  89. NMLocation = glGetUniformLocation(program, "NM");
  90. textureLocation = glGetUniformLocation(program, "U_MainTexture");
  91. /*load model*/
  92. unsigned int *indexes = nullptr;
  93. int vertexCount = 0, indexCount = 0;
  94. Timer t;
  95. t.Start();
  96. VertexData* vertexes = LoadObjModel("res/model/Quad.obj", &indexes, vertexCount, indexCount);
  97. printf("load model cost %fs %d\n", t.GetPassedTime(), t.GetPassedTickers());
  98. if (vertexes == nullptr) {
  99. printf("load obj model fail\n");
  100. }
  101. /*����vbo*/
  102. GLuint vbo = CreateBufferObject(GL_ARRAY_BUFFER, sizeof(VertexData) * vertexCount, GL_STATIC_DRAW, vertexes);
  103. /*����IBO*/
  104. GLuint ibo = CreateBufferObject(GL_ELEMENT_ARRAY_BUFFER, sizeof(unsigned int) * indexCount, GL_STATIC_DRAW, indexes);
  105. /*��������*/
  106. GLuint mainTexture = CreateTextureFromFile("res/image/stone.jpg");
  107. GLuint secondTexture = CreateTextureFromDds("res/image/150001.dds");
  108. glClearColor(0.0f, 0.0f, 0.0f, 1.0f);
  109. glEnable(GL_DEPTH_TEST);
  110. glViewport(0,0, windowWidth, windowHeight);
  111. //����һ����λ������һ��ͶӰ���󣬺����������ݵ�shader
  112. float identify[] = {
  113. 1,0,0,0,
  114. 0,1,0,0,
  115. 0,0,1,0,
  116. 0,0,0,1
  117. };
  118. glm::mat4 model = glm::translate(0.0f, 0.0f, -4.0f);
  119. glm::mat4 projection = glm::perspective(45.0f, (float)windowWidth / (float)windowHeight, 0.1f, 1000.0f);
  120. glm::mat4 normalMatrix = glm::inverseTranspose(model);
  121. /*��ʾ����*/
  122. ShowWindow(hwnd, SW_SHOW);
  123. UpdateWindow(hwnd);
  124. /*�����������û�����*/
  125. MSG msg;
  126. auto what = [&]()->void {
  127. glm::mat4 normalMatrix = glm::inverseTranspose(model);
  128. glUseProgram(program);
  129. glUniformMatrix4fv(MLocation, 1, GL_FALSE, glm::value_ptr(model));
  130. glUniformMatrix4fv(VLocation, 1, GL_FALSE, identify);
  131. glUniformMatrix4fv(PLocation, 1, GL_FALSE, glm::value_ptr(projection));
  132. glUniformMatrix4fv(NMLocation, 1, GL_FALSE, glm::value_ptr(normalMatrix));
  133. glBindTexture(GL_TEXTURE_2D, mainTexture);
  134. glUniform1i(textureLocation, 0);
  135. glBindBuffer(GL_ARRAY_BUFFER, vbo);
  136. glEnableVertexAttribArray(posLocation);
  137. glVertexAttribPointer(posLocation, 3, GL_FLOAT, GL_FALSE, sizeof(VertexData), (void*)0);
  138. glEnableVertexAttribArray(texcoordLocation);
  139. glVertexAttribPointer(texcoordLocation, 2, GL_FLOAT, GL_FALSE, sizeof(VertexData), (void*)(sizeof(float) * 3));
  140. glEnableVertexAttribArray(normalLocation);
  141. glVertexAttribPointer(normalLocation, 3, GL_FLOAT, GL_FALSE, sizeof(VertexData), (void*)(sizeof(float) * 5));
  142. glBindBuffer(GL_ARRAY_BUFFER, 0);
  143. glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, ibo);
  144. glDrawElements(GL_TRIANGLES, indexCount, GL_UNSIGNED_INT, 0);
  145. glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, 0);
  146. glUseProgram(0);
  147. };
  148. while (true) {
  149. if (PeekMessage(&msg, NULL, NULL, NULL, PM_REMOVE)) {
  150. if (msg.message == WM_QUIT) {
  151. break;
  152. }
  153. TranslateMessage(&msg);
  154. DispatchMessage(&msg);
  155. }
  156. glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
  157. glEnable(GL_SCISSOR_TEST);
  158. glScissor(400,300, 100, 100);
  159. what();
  160. SwapBuffers(dc);
  161. }
  162. return 0;
  163. }