ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/cvsroot/libgender/material.C
(Generate patch)

Comparing cvsroot/libgender/material.C (file contents):
Revision 1.20 by root, Sat Oct 30 00:17:28 2004 UTC vs.
Revision 1.44 by root, Sat Nov 6 14:49:03 2004 UTC

5 5
6#include "opengl.h" 6#include "opengl.h"
7#include "material.h" 7#include "material.h"
8#include "view.h" 8#include "view.h"
9#include "util.h" 9#include "util.h"
10
11material::~material ()
12{
13}
14
15void
16simple_material::enable (view &ctx)
17{
18 glMaterialfv (GL_FRONT, GL_DIFFUSE, (GLfloat *) & diffuse);
19 glMaterialfv (GL_FRONT, GL_SPECULAR, (GLfloat *) & specular);
20 glMaterialfv (GL_FRONT, GL_EMISSION, (GLfloat *) & emission);
21 glMaterialf (GL_FRONT, GL_SHININESS, shininess);
22}
23
24void
25simple_material::disable (view &ctx)
26{
27}
28 10
29GLuint 11GLuint
30texture::load_texture (SDL_Surface * surface, GLfloat * tex2oord) 12texture::load_texture (SDL_Surface * surface, GLfloat * tex2oord)
31{ 13{
32 GLuint name; 14 GLuint name;
81 SDL_FreeSurface (image); /* No longer needed */ 63 SDL_FreeSurface (image); /* No longer needed */
82 64
83 return name; 65 return name;
84} 66}
85 67
68material::~material ()
69{
70}
71
72void material::enable (view &ctx)
73{
74 static shader::compile::varying_1f Z;//D
75
76 pass::matmap_t &matmap = ctx.pass_data->matmap;
77
78 pass::matmap_t::iterator i = matmap.find (this);
79
80 if (i == matmap.end ())
81 {
82 string vsh_src, fsh_src;
83
84 shader::shader_builder::start ();
85
86 if (ctx.pass_data->l)
87 ctx.pass_data->l->vsh ();
88
89 vsh (ctx);
90
91 {
92 using namespace shader::compile;
93
94 Z = pow (z (vout.position) / 2.F, 0.2);
95 z (vout.position) = (Z * 2 - 1) * w (vout.position);
96 //z (vout.position) = z (vout.position) - 1;
97 }
98
99 vsh_src = shader::shader_builder::stop ();
100
101 shader::shader_builder::start ();
102
103 if (ctx.pass_data->l)
104 {
105 ctx.pass_data->l->fsh ();
106
107 fsh (ctx);
108 }
109 else
110 shader::compile::fout.frag_color = shader::compile::float4 (1., 0., 1., 1.);
111
112 {
113 using namespace shader::compile;
114 //x (fout.frag_color) = Z;//D
115 //y (fout.frag_color) = Z;//D
116 //z (fout.frag_color) = Z;//D
117 }
118
119 fsh_src = shader::shader_builder::stop ();
120
121 shader::program_object po = shader::get_program (vsh_src, fsh_src);
122 matmap.insert (pass::matmap_t::value_type (this, po));
123
124 po->enable ();
125 }
126 else
127 i->second->enable ();
128}
129
130void material::disable (view &ctx)
131{
132}
133
86test_material::test_material () 134test_material::test_material ()
87: tex ("textures/osama.jpg"), texvar (tex.name) 135//: tex ("textures/osama.jpg"), texvar (tex.name)
136: tex ("textures/rockwall.jpg"), texvar (tex.name)
137, norm ("textures/rockwall_normal.jpg"), normvar (norm.name)
138{
139}
140
141static shader::varying_3f normal;
142static shader::varying_2f texcoord;
143
144void test_material::vsh (view &ctx)
88{ 145{
89 using namespace shader::compile; 146 using namespace shader::compile;
90 147
91 p.vsh->start (); 148 std_vsh ();
92 149
93 temp_4f wpos; 150 if (ctx.pass_data->l)
94 151 {
95 wpos = model_view_projection_matrix * vin.vertex;
96
97 vout.position = wpos;
98 vout.tex_coord[0] = vin.tex_coord[0]; 152 texcoord = xy (vin.tex_coord[0]);
99 vout.tex_coord[1] = model_view_matrix * shader::compile::vec4 (x(vin.normal), y(vin.normal), z(vin.normal), 0); 153 normal = normal_matrix * vin.normal;
154 }
155}
100 156
101 p.vsh->end (); 157void test_material::fsh (view &ctx)
102 p.vsh->compile (); 158{
159 using namespace shader::compile;
103 160
104 p.fsh->start (); 161 if (ctx.pass_data->l)
105 162 {
163 temp_3f lc;
106 temp_1f fac; 164 temp_1f fac;
107 165
108 fac = max (dot (fin.tex_coord[1], lightpos), 0.0); 166 temp_3f rot1, rot2, rot3;
109 fac = pow (fac, 3); 167
168 yxz (rot1) = (texture_2d (normvar, texcoord) * 2.F - 1.F);
169
170 //rot1 = normal_matrix * rot1;
171
172 rot2 = float3 (x(rot1), z(rot1), -y(rot1));
173 rot3 = float3 (y(rot1), -x(rot1), z(rot1));
174
175 normal = mat3 (rot1, rot2, rot3) * normal;
176
177 fac = dot (normalize (normal), normalize (ctx.pass_data->l->sh_lightvec));
178 fac = max (pow (max (fac, 0.0), 6), 0.3);
110 xyz (fout.frag_color) = texture_2d (texvar, fin.tex_coord[0]) * (fac + 0.3); 179 xyz (fout.frag_color) = (texture_2d (texvar, texcoord) + 0.2F) * fac
111 180 * ctx.pass_data->l->sh_colour;
112 p.fsh->end (); 181 //xyz (fout.frag_color) = lc * fac;
113 p.fsh->compile (); 182 }
114 p.link ();
115} 183}
116 184
117void test_material::enable (view &ctx) 185void test_material::enable (view &ctx)
118{ 186{
119 p.enable (); 187 material::enable (ctx);
120 lightpos->set (-ctx.d);
121 texvar->enable (); 188 texvar->enable ();
189 normvar->enable ();
122} 190}
123 191
124void test_material::disable (view &ctx) 192void test_material::disable (view &ctx)
125{ 193{
194 normvar->disable ();
126 texvar->disable (); 195 texvar->disable ();
127 p.disable (); 196 material::disable (ctx);
128} 197}
129 198
199test_material *testmat;
200

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines