diff --git a/geometry.cpp b/geometry.cpp index 40952eaf..a0cac0e1 100644 --- a/geometry.cpp +++ b/geometry.cpp @@ -251,6 +251,9 @@ hpcshape vector shPlainWall3D, shWireframe3D, shWall3D, shMiniWall3D; vector walltester; + + vector wallstart; + vector raywall; vector all_plain_floorshapes; vector all_escher_floorshapes; diff --git a/polygons.cpp b/polygons.cpp index 9ff8fc3d..bf65750a 100644 --- a/polygons.cpp +++ b/polygons.cpp @@ -709,6 +709,8 @@ void geometry_information::compute_cornerbonus() { } void geometry_information::make_wall(int id, vector vertices, vector weights) { + wallstart.push_back(isize(raywall)); + // orient correctly transmatrix T; set_column(T, 0, vertices[0]); @@ -739,7 +741,7 @@ void geometry_information::make_wall(int id, vector vertices, vector } } - if(cgflags & qIDEAL) for(auto& v: vertices) v /= v[3]; + if(cgflags & qIDEAL) for(auto& v: vertices) v = kleinize(v); ld w = 0; for(int i=0; i vertices, vector for(int a=0; a= 0. && v.y >= 0. && v.x + v.y <= 1.) return v;\n" + "}\n" + "return vec2(0.5, 0.5);\n" + "}\n"; + string fmain = "void main() {\n"; if(IN_ODS) fmain += @@ -171,9 +192,8 @@ void enable_raycaster() { " float u = cid + float(which) / float(uLength);\n" " vec4 col = texture1D(tWallcolor, u);\n" " if(col[3] > 0.0) {\n" - " vec4 inface = uM[uN+which] * position;\n" - " inface = inface / inface.w;" - " float bright = texture2D(tWallTexture, (inface.yz + vec2(1.,1.))/2.).r;\n" + " vec2 inface = map_texture(position, which);\n" + " float bright = min(1., 10. * (1.-inface.x-inface.y));\n" // texture2D(tWallTexture, (inface.yz + vec2(1.,1.))/2.).r;\n" // " col.xyz = col.xyz * bright * max(1.-go/7., 0.5 * exp(-go/4.));\n" // exp(-go/4.);\n" " col.xyz = col.xyz * bright * exp(- go / 20.);\n" // " col.xyz = col.xyz * bright * max(1.-go/7., 0.5 * exp(-go/4.));\n" // exp(-go/4.);\n" @@ -234,59 +254,11 @@ void bind_array(vector>& v, GLint t, GLuint& tx, int id) { GLERR("bind_array"); } -bool made_texture; - -void make_walltexture(GLuint t, GLuint& tx, int id) { - if(made_texture) return; - made_texture = true; - glUniform1i(our_raycaster->tWallTexture, id); - GLERR("pre walltexture"); - - if(tx == 0) glGenTextures(1, &tx); - GLERR("gentexture"); - - glActiveTexture(GL_TEXTURE0 + id); - GLERR("walltexture b"); - - glBindTexture(GL_TEXTURE_2D, tx); - GLERR("walltexture c"); - - glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); - glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); - GLERR("walltexture a"); - - constexpr int dsize = 1024; - - float data[dsize][dsize]; - - for(int y=0; y .9) maxd = (10 - 10 * maxd) * .9; - else maxd = 0.8 + 0.1 * max(sin(maxd*50), sin(atan2(h[1], h[0]) * 30 + M_PI/4)); - data[y][x] = maxd; - } - - glTexImage2D(GL_TEXTURE_2D, 0, GL_R32F, dsize, dsize, 0, GL_RED, GL_FLOAT, &data[0][0]); - GLERR("walltexture"); - } - EX void do_raycast() { enable_raycaster(); auto& o = our_raycaster; - make_walltexture(o->tWallTexture, txWallTexture, 6); - vector screen = { glhr::makevertex(-1, -1, 1), glhr::makevertex(-1, +1, 1), @@ -331,11 +303,7 @@ EX void do_raycast() { for(int j=0; jrelative_matrix(cwt.at->master, cwt.at->cmove(j)->master)); else for(int j=0; j connections(length); vector> wallcolor(length); vector matrixid(length); @@ -369,6 +337,19 @@ EX void do_raycast() { } } + vector wallstart; + for(auto i: cgi.wallstart) wallstart.push_back(i); + glUniform1iv(o->uWallstart, isize(wallstart), &wallstart[0]); + + vector wallx, wally; + for(auto& m: cgi.raywall) { + wallx.push_back(glhr::pointtogl(m[0])); + wally.push_back(glhr::pointtogl(m[1])); + } + + glUniform4fv(o->uWallX, isize(wallx), &wallx[0][0]); + glUniform4fv(o->uWallY, isize(wally), &wally[0][0]); + vector gms; for(auto& m: ms) gms.push_back(glhr::tmtogl_transpose(m)); glUniformMatrix4fv(o->uM, isize(gms), 0, gms[0].as_array());