summaryrefslogblamecommitdiff
path: root/source/dw/app/inigfx.rs
blob: 5444b10adda4638d121da31878a4562fd35751fb (plain) (tree)
1
2
3
4
5
6
7
8
9
10

                                 

                               



                  

                                  




                                               
                                                                         

                                             
                                                                             

                                                                                                 

                
                                                                                                                                                                                                        



                                                 


                                                                                 
 

                                              
                            



                                      


                  
// Copyright 2023 Gabriel Jensen.

use crate::dw::VER;
use crate::dw::app::{App, Gfx};

extern crate gl;
extern crate glfw;

use gl::load_with;
use glfw::{Context, SwapInterval};
use std::ffi::c_void;

impl App {
	pub fn inigfx(&mut self) -> Gfx {
		eprintln!("initialising glfw");
		let mut glfw = glfw::init(glfw::FAIL_ON_ERRORS).unwrap();

		eprintln!("creating window");
		glfw.window_hint(glfw::WindowHint::ContextVersion(0x3, 0x2));
		glfw.window_hint(glfw::WindowHint::OpenGlProfile(glfw::OpenGlProfileHint::Core));
		glfw.window_hint(glfw::WindowHint::Samples(Some(0x8)));

		
		let (mut win, evt) = glfw.create_window(0x400, 0x300, format!("DeltaWorld {}.{}.{}", VER.maj, VER.min, VER.pat).as_str(), glfw::WindowMode::Windowed).expect("unable to create window");
		win.set_key_polling(true);
		win.make_current();

		eprintln!("initialising opengl");
		load_with(|nam| glfw.get_proc_address_raw(nam) as *const c_void);

		glfw.set_swap_interval(SwapInterval::Sync(0x1));

		let shdprg = self.getshdprg();

		return Gfx {
			evt:   evt,
			glfw:  glfw,
			shdprg:shdprg,
			win:   win,
		};
	}
}