2012-11-01 15:19:01 +00:00
|
|
|
// Copyright (c) 2012- PPSSPP Project.
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
2012-11-04 22:01:49 +00:00
|
|
|
// the Free Software Foundation, version 2.0 or later versions.
|
2012-11-01 15:19:01 +00:00
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official git repository and contact information can be found at
|
|
|
|
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2012-12-20 13:10:42 +00:00
|
|
|
#if defined(_WIN32) && defined(_DEBUG)
|
|
|
|
#include <windows.h>
|
|
|
|
#endif
|
2012-11-01 15:19:01 +00:00
|
|
|
|
|
|
|
#include "../ge_constants.h"
|
|
|
|
#include "../GPUState.h"
|
2012-12-21 10:08:54 +00:00
|
|
|
#include "../../Core/Config.h"
|
2012-11-01 15:19:01 +00:00
|
|
|
|
|
|
|
#include "VertexShaderGenerator.h"
|
|
|
|
|
|
|
|
// SDL 1.2 on Apple does not have support for OpenGL 3 and hence needs
|
|
|
|
// special treatment in the shader generator.
|
|
|
|
#ifdef __APPLE__
|
|
|
|
#define FORCE_OPENGL_2_0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#undef WRITE
|
|
|
|
|
2012-12-20 13:10:42 +00:00
|
|
|
#define WRITE p+=sprintf
|
|
|
|
|
|
|
|
bool CanUseHardwareTransform(int prim)
|
|
|
|
{
|
2012-12-21 10:08:54 +00:00
|
|
|
if (!g_Config.bHardwareTransform)
|
|
|
|
return false;
|
|
|
|
return !gstate.isModeThrough() && prim != GE_PRIM_RECTANGLES;
|
2012-12-20 13:10:42 +00:00
|
|
|
}
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2012-12-05 03:45:28 +00:00
|
|
|
// prim so we can special case for RECTANGLES :(
|
|
|
|
void ComputeVertexShaderID(VertexShaderID *id, int prim)
|
2012-11-01 15:19:01 +00:00
|
|
|
{
|
2013-01-21 18:11:32 +00:00
|
|
|
int doTexture = (gstate.textureMapEnable & 1) && !(gstate.isModeClear());
|
2012-12-05 04:13:36 +00:00
|
|
|
|
2012-12-20 13:10:42 +00:00
|
|
|
bool hasColor = (gstate.vertType & GE_VTYPE_COL_MASK) != 0;
|
|
|
|
bool hasNormal = (gstate.vertType & GE_VTYPE_NRM_MASK) != 0;
|
|
|
|
bool hasBones = (gstate.vertType & GE_VTYPE_WEIGHT_MASK) != 0;
|
2013-01-20 23:34:37 +00:00
|
|
|
bool enableFog = gstate.isFogEnabled() && !gstate.isModeThrough() && !gstate.isModeClear();
|
2013-03-27 10:21:02 +00:00
|
|
|
bool lmode = (gstate.lmode & 1) && gstate.isLightingEnabled();
|
2012-12-20 13:10:42 +00:00
|
|
|
|
2012-11-01 15:19:01 +00:00
|
|
|
memset(id->d, 0, sizeof(id->d));
|
2013-01-22 20:57:47 +00:00
|
|
|
id->d[0] = lmode & 1;
|
2012-11-28 12:45:22 +00:00
|
|
|
id->d[0] |= ((int)gstate.isModeThrough()) << 1;
|
2013-01-21 18:11:32 +00:00
|
|
|
id->d[0] |= ((int)enableFog) << 2;
|
2012-12-05 04:13:36 +00:00
|
|
|
id->d[0] |= doTexture << 3;
|
2012-12-20 13:10:42 +00:00
|
|
|
id->d[0] |= (hasColor & 1) << 4;
|
2013-02-14 23:30:02 +00:00
|
|
|
if (doTexture)
|
|
|
|
id->d[0] |= (gstate_c.flipTexture & 1) << 5;
|
|
|
|
|
2012-12-20 13:10:42 +00:00
|
|
|
if (CanUseHardwareTransform(prim)) {
|
|
|
|
id->d[0] |= 1 << 8;
|
|
|
|
id->d[0] |= (hasNormal & 1) << 9;
|
|
|
|
id->d[0] |= (hasBones & 1) << 10;
|
|
|
|
|
|
|
|
// UV generation mode
|
|
|
|
id->d[0] |= gstate.getUVGenMode() << 16;
|
|
|
|
|
|
|
|
// The next bits are used differently depending on UVgen mode
|
|
|
|
if (gstate.getUVGenMode() == 1) {
|
|
|
|
id->d[0] |= gstate.getUVProjMode() << 18;
|
|
|
|
} else if (gstate.getUVGenMode() == 2) {
|
|
|
|
id->d[0] |= gstate.getUVLS0() << 18;
|
|
|
|
id->d[0] |= gstate.getUVLS1() << 20;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Bones
|
|
|
|
id->d[0] |= (gstate.getNumBoneWeights() - 1) << 22;
|
|
|
|
|
2013-01-22 20:57:47 +00:00
|
|
|
// Okay, d[1] coming up. ==============
|
|
|
|
|
2013-03-27 10:21:02 +00:00
|
|
|
id->d[1] |= gstate.isLightingEnabled() << 19;
|
2013-01-22 21:27:03 +00:00
|
|
|
if ((gstate.lightingEnable & 1) || gstate.getUVGenMode() == 2) {
|
2013-01-22 20:57:47 +00:00
|
|
|
// Light bits
|
|
|
|
for (int i = 0; i < 4; i++) {
|
|
|
|
id->d[1] |= (gstate.ltype[i] & 3) << (i * 4);
|
|
|
|
id->d[1] |= ((gstate.ltype[i] >> 8) & 3) << (i * 4 + 2);
|
|
|
|
}
|
|
|
|
id->d[1] |= (gstate.materialupdate & 7) << 16;
|
|
|
|
for (int i = 0; i < 4; i++) {
|
|
|
|
id->d[1] |= (gstate.lightEnable[i] & 1) << (20 + i);
|
|
|
|
}
|
2012-12-21 20:49:09 +00:00
|
|
|
}
|
2012-12-20 13:10:42 +00:00
|
|
|
}
|
2012-11-01 15:19:01 +00:00
|
|
|
}
|
|
|
|
|
2012-12-20 13:10:42 +00:00
|
|
|
const char *boneWeightAttrDecl[8] = {
|
2012-12-20 17:31:21 +00:00
|
|
|
"attribute float a_weight0123;\n",
|
2012-12-20 13:10:42 +00:00
|
|
|
"attribute vec2 a_weight0123;\n",
|
|
|
|
"attribute vec3 a_weight0123;\n",
|
|
|
|
"attribute vec4 a_weight0123;\n",
|
|
|
|
"attribute vec4 a_weight0123;\nattribute float a_weight4567;\n",
|
|
|
|
"attribute vec4 a_weight0123;\nattribute vec2 a_weight4567;\n",
|
|
|
|
"attribute vec4 a_weight0123;\nattribute vec3 a_weight4567;\n",
|
|
|
|
"attribute vec4 a_weight0123;\nattribute vec4 a_weight4567;\n",
|
|
|
|
};
|
|
|
|
|
|
|
|
const char *boneWeightAttr[8] = {
|
|
|
|
"a_weight0123.x",
|
|
|
|
"a_weight0123.y",
|
|
|
|
"a_weight0123.z",
|
|
|
|
"a_weight0123.w",
|
|
|
|
"a_weight4567.x",
|
|
|
|
"a_weight4567.y",
|
|
|
|
"a_weight4567.z",
|
|
|
|
"a_weight4567.w",
|
|
|
|
};
|
|
|
|
|
|
|
|
enum DoLightComputation {
|
|
|
|
LIGHT_OFF,
|
|
|
|
LIGHT_DOTONLY,
|
|
|
|
LIGHT_FULL,
|
|
|
|
};
|
|
|
|
|
2013-01-07 12:00:28 +00:00
|
|
|
void GenerateVertexShader(int prim, char *buffer) {
|
2012-11-01 15:19:01 +00:00
|
|
|
char *p = buffer;
|
2012-11-26 03:25:14 +00:00
|
|
|
#if defined(USING_GLES2)
|
2012-12-20 13:10:42 +00:00
|
|
|
WRITE(p, "precision highp float;\n");
|
2012-11-01 15:19:01 +00:00
|
|
|
#elif !defined(FORCE_OPENGL_2_0)
|
2013-01-07 09:07:00 +00:00
|
|
|
WRITE(p, "#version 110\n");
|
2013-03-03 22:57:29 +00:00
|
|
|
// Remove lowp/mediump in non-mobile implementations
|
|
|
|
WRITE(p, "#define lowp\n");
|
|
|
|
WRITE(p, "#define mediump\n");
|
|
|
|
#else
|
|
|
|
// Need to remove lowp/mediump for Mac
|
|
|
|
WRITE(p, "#define lowp\n");
|
|
|
|
WRITE(p, "#define mediump\n");
|
2012-11-01 15:19:01 +00:00
|
|
|
#endif
|
|
|
|
|
2013-01-22 20:57:47 +00:00
|
|
|
int lmode = (gstate.lmode & 1) && (gstate.lightingEnable & 1);
|
2012-12-05 03:45:28 +00:00
|
|
|
int doTexture = (gstate.textureMapEnable & 1) && !(gstate.clearmode & 1);
|
|
|
|
|
2012-12-20 13:10:42 +00:00
|
|
|
bool hwXForm = CanUseHardwareTransform(prim);
|
|
|
|
bool hasColor = (gstate.vertType & GE_VTYPE_COL_MASK) != 0 || !hwXForm;
|
|
|
|
bool hasNormal = (gstate.vertType & GE_VTYPE_NRM_MASK) != 0 && hwXForm;
|
2013-01-14 19:43:18 +00:00
|
|
|
bool enableFog = gstate.isFogEnabled() && !gstate.isModeThrough() && !gstate.isModeClear();
|
2013-03-27 10:21:02 +00:00
|
|
|
bool throughmode = (gstate.vertType & GE_VTYPE_THROUGH_MASK) != 0;
|
2013-02-14 23:30:02 +00:00
|
|
|
bool flipV = gstate_c.flipTexture;
|
2012-12-20 13:10:42 +00:00
|
|
|
|
|
|
|
DoLightComputation doLight[4] = {LIGHT_OFF, LIGHT_OFF, LIGHT_OFF, LIGHT_OFF};
|
|
|
|
if (hwXForm) {
|
|
|
|
int shadeLight0 = gstate.getUVGenMode() == 2 ? gstate.getUVLS0() : -1;
|
|
|
|
int shadeLight1 = gstate.getUVGenMode() == 2 ? gstate.getUVLS1() : -1;
|
|
|
|
for (int i = 0; i < 4; i++) {
|
|
|
|
if (!hasNormal)
|
|
|
|
continue;
|
|
|
|
if (i == shadeLight0 || i == shadeLight1)
|
|
|
|
doLight[i] = LIGHT_DOTONLY;
|
|
|
|
if ((gstate.lightingEnable & 1) && (gstate.lightEnable[i] & 1))
|
|
|
|
doLight[i] = LIGHT_FULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((gstate.vertType & GE_VTYPE_WEIGHT_MASK) != GE_VTYPE_WEIGHT_NONE) {
|
|
|
|
WRITE(p, "%s", boneWeightAttrDecl[gstate.getNumBoneWeights() - 1]);
|
|
|
|
}
|
|
|
|
|
2013-01-14 19:43:18 +00:00
|
|
|
if (hwXForm)
|
|
|
|
WRITE(p, "attribute vec3 a_position;\n");
|
|
|
|
else
|
|
|
|
WRITE(p, "attribute vec4 a_position;\n"); // need to pass the fog coord in w
|
|
|
|
|
2012-12-20 13:10:42 +00:00
|
|
|
if (doTexture) WRITE(p, "attribute vec2 a_texcoord;\n");
|
|
|
|
if (hasColor) {
|
2013-03-03 22:57:29 +00:00
|
|
|
WRITE(p, "attribute lowp vec4 a_color0;\n");
|
2012-12-20 13:10:42 +00:00
|
|
|
if (lmode && !hwXForm) // only software transform supplies color1 as vertex data
|
2013-03-03 22:57:29 +00:00
|
|
|
WRITE(p, "attribute lowp vec3 a_color1;\n");
|
2012-12-20 13:10:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (hwXForm && hasNormal)
|
2013-03-03 22:57:29 +00:00
|
|
|
WRITE(p, "attribute mediump vec3 a_normal;\n");
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2012-11-28 12:45:22 +00:00
|
|
|
if (gstate.isModeThrough()) {
|
2012-12-20 13:10:42 +00:00
|
|
|
WRITE(p, "uniform mat4 u_proj_through;\n");
|
2012-11-28 12:45:22 +00:00
|
|
|
} else {
|
2012-12-20 13:10:42 +00:00
|
|
|
WRITE(p, "uniform mat4 u_proj;\n");
|
2012-11-28 12:45:22 +00:00
|
|
|
// Add all the uniforms we'll need to transform properly.
|
|
|
|
}
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2012-12-20 13:10:42 +00:00
|
|
|
if (hwXForm || !hasColor)
|
2013-03-03 22:57:29 +00:00
|
|
|
WRITE(p, "uniform lowp vec4 u_matambientalpha;\n"); // matambient + matalpha
|
2012-12-20 13:10:42 +00:00
|
|
|
|
2013-01-14 19:43:18 +00:00
|
|
|
if (enableFog) {
|
|
|
|
WRITE(p, "uniform vec2 u_fogcoef;\n");
|
|
|
|
}
|
|
|
|
|
2012-12-20 13:10:42 +00:00
|
|
|
if (hwXForm) {
|
|
|
|
// When transforming by hardware, we need a great deal more uniforms...
|
2012-12-21 10:08:54 +00:00
|
|
|
WRITE(p, "uniform mat4 u_world;\n");
|
|
|
|
WRITE(p, "uniform mat4 u_view;\n");
|
2012-12-20 13:10:42 +00:00
|
|
|
if (gstate.getUVGenMode() == 0)
|
|
|
|
WRITE(p, "uniform vec4 u_uvscaleoffset;\n");
|
|
|
|
else if (gstate.getUVGenMode() == 1)
|
2012-12-21 10:08:54 +00:00
|
|
|
WRITE(p, "uniform mat4 u_texmtx;\n");
|
2012-12-20 13:10:42 +00:00
|
|
|
if ((gstate.vertType & GE_VTYPE_WEIGHT_MASK) != GE_VTYPE_WEIGHT_NONE) {
|
|
|
|
int numBones = 1 + ((gstate.vertType & GE_VTYPE_WEIGHTCOUNT_MASK) >> GE_VTYPE_WEIGHTCOUNT_SHIFT);
|
|
|
|
for (int i = 0; i < numBones; i++) {
|
2012-12-21 10:08:54 +00:00
|
|
|
WRITE(p, "uniform mat4 u_bone%i;\n", i);
|
2012-12-20 13:10:42 +00:00
|
|
|
}
|
|
|
|
}
|
2013-03-27 10:21:02 +00:00
|
|
|
if (gstate.isLightingEnabled()) {
|
2013-03-03 22:57:29 +00:00
|
|
|
WRITE(p, "uniform lowp vec4 u_ambient;\n");
|
2012-12-20 17:31:21 +00:00
|
|
|
if ((gstate.materialupdate & 2) == 0)
|
2013-03-03 22:57:29 +00:00
|
|
|
WRITE(p, "uniform lowp vec3 u_matdiffuse;\n");
|
2012-12-20 17:31:21 +00:00
|
|
|
// if ((gstate.materialupdate & 4) == 0)
|
2013-03-03 22:57:29 +00:00
|
|
|
WRITE(p, "uniform lowp vec4 u_matspecular;\n"); // Specular coef is contained in alpha
|
|
|
|
WRITE(p, "uniform lowp vec3 u_matemissive;\n");
|
2012-12-20 17:31:21 +00:00
|
|
|
}
|
|
|
|
for (int i = 0; i < 4; i++) {
|
|
|
|
if (doLight[i] != LIGHT_OFF) {
|
|
|
|
// These are needed for dot product only (for shade mapping)
|
|
|
|
WRITE(p, "uniform vec3 u_lightpos%i;\n", i);
|
|
|
|
WRITE(p, "uniform vec3 u_lightdir%i;\n", i);
|
|
|
|
WRITE(p, "uniform vec3 u_lightatt%i;\n", i);
|
|
|
|
}
|
|
|
|
if (doLight[i] == LIGHT_FULL) {
|
|
|
|
// These are needed for the full thing
|
2013-03-03 22:57:29 +00:00
|
|
|
WRITE(p, "uniform lowp vec3 u_lightambient%i;\n", i);
|
|
|
|
WRITE(p, "uniform lowp vec3 u_lightdiffuse%i;\n", i);
|
|
|
|
WRITE(p, "uniform lowp vec3 u_lightspecular%i;\n", i);
|
2012-12-20 17:31:21 +00:00
|
|
|
}
|
|
|
|
}
|
2012-11-28 12:45:22 +00:00
|
|
|
}
|
2012-12-20 13:10:42 +00:00
|
|
|
|
2013-03-03 22:57:29 +00:00
|
|
|
WRITE(p, "varying lowp vec4 v_color0;\n");
|
|
|
|
if (lmode) WRITE(p, "varying lowp vec3 v_color1;\n");
|
2012-12-20 13:10:42 +00:00
|
|
|
if (doTexture) WRITE(p, "varying vec2 v_texcoord;\n");
|
2013-01-14 19:43:18 +00:00
|
|
|
if (enableFog) WRITE(p, "varying float v_fogdepth;\n");
|
|
|
|
|
2012-12-20 13:10:42 +00:00
|
|
|
WRITE(p, "void main() {\n");
|
|
|
|
|
|
|
|
if (!hwXForm) {
|
|
|
|
// Simple pass-through of vertex data to fragment shader
|
|
|
|
if (doTexture)
|
|
|
|
WRITE(p, " v_texcoord = a_texcoord;\n");
|
|
|
|
if (hasColor) {
|
|
|
|
WRITE(p, " v_color0 = a_color0;\n");
|
|
|
|
if (lmode)
|
|
|
|
WRITE(p, " v_color1 = a_color1;\n");
|
|
|
|
} else {
|
|
|
|
WRITE(p, " v_color0 = u_matambientalpha;\n");
|
|
|
|
if (lmode)
|
2013-03-27 10:21:02 +00:00
|
|
|
WRITE(p, " v_color1 = vec3(0.0);\n");
|
2012-12-20 13:10:42 +00:00
|
|
|
}
|
2013-01-14 19:43:18 +00:00
|
|
|
if (enableFog) {
|
|
|
|
WRITE(p, " v_fogdepth = a_position.w;\n");
|
|
|
|
}
|
2012-12-20 13:10:42 +00:00
|
|
|
if (gstate.isModeThrough()) {
|
2013-01-14 19:43:18 +00:00
|
|
|
WRITE(p, " gl_Position = u_proj_through * vec4(a_position.xyz, 1.0);\n");
|
2012-12-20 13:10:42 +00:00
|
|
|
} else {
|
2013-01-14 19:43:18 +00:00
|
|
|
WRITE(p, " gl_Position = u_proj * vec4(a_position.xyz, 1.0);\n");
|
2012-12-20 13:10:42 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Step 1: World Transform / Skinning
|
|
|
|
if ((gstate.vertType & GE_VTYPE_WEIGHT_MASK) == GE_VTYPE_WEIGHT_NONE) {
|
|
|
|
// No skinning, just standard T&L.
|
2013-01-14 19:43:18 +00:00
|
|
|
WRITE(p, " vec3 worldpos = (u_world * vec4(a_position.xyz, 1.0)).xyz;\n");
|
2012-12-20 13:10:42 +00:00
|
|
|
if (hasNormal)
|
2012-12-21 10:08:54 +00:00
|
|
|
WRITE(p, " vec3 worldnormal = (u_world * vec4(a_normal, 0.0)).xyz;\n");
|
2012-12-20 13:10:42 +00:00
|
|
|
} else {
|
2013-03-27 10:21:02 +00:00
|
|
|
WRITE(p, " vec3 worldpos = vec3(0.0);\n");
|
2012-12-20 13:10:42 +00:00
|
|
|
if (hasNormal)
|
2013-03-27 10:21:02 +00:00
|
|
|
WRITE(p, " vec3 worldnormal = vec3(0.0);\n");
|
2012-12-20 13:10:42 +00:00
|
|
|
int numWeights = 1 + ((gstate.vertType & GE_VTYPE_WEIGHTCOUNT_MASK) >> GE_VTYPE_WEIGHTCOUNT_SHIFT);
|
|
|
|
for (int i = 0; i < numWeights; i++) {
|
2012-12-20 17:31:21 +00:00
|
|
|
const char *weightAttr = boneWeightAttr[i];
|
|
|
|
// workaround for "cant do .x of scalar" issue
|
|
|
|
if (numWeights == 1 && i == 0) weightAttr = "a_weight0123";
|
|
|
|
if (numWeights == 5 && i == 4) weightAttr = "a_weight4567";
|
2013-01-14 19:43:18 +00:00
|
|
|
WRITE(p, " worldpos += %s * (u_bone%i * vec4(a_position.xyz, 1.0)).xyz;\n", weightAttr, i);
|
2012-12-20 13:10:42 +00:00
|
|
|
if (hasNormal)
|
2012-12-21 10:08:54 +00:00
|
|
|
WRITE(p, " worldnormal += %s * (u_bone%i * vec4(a_normal, 0.0)).xyz;\n", weightAttr, i);
|
2012-12-20 13:10:42 +00:00
|
|
|
}
|
|
|
|
// Finally, multiply by world matrix (yes, we have to).
|
2013-02-04 22:09:01 +00:00
|
|
|
WRITE(p, " worldpos = (u_world * vec4(worldpos * 2.0, 1.0)).xyz;\n");
|
2012-12-20 13:10:42 +00:00
|
|
|
if (hasNormal)
|
2012-12-21 10:08:54 +00:00
|
|
|
WRITE(p, " worldnormal = (u_world * vec4(worldnormal, 0.0)).xyz;\n");
|
2012-12-20 13:10:42 +00:00
|
|
|
}
|
2012-12-21 10:08:54 +00:00
|
|
|
if (hasNormal)
|
|
|
|
WRITE(p, " worldnormal = normalize(worldnormal);\n");
|
2012-12-20 13:10:42 +00:00
|
|
|
|
2013-01-14 19:43:18 +00:00
|
|
|
WRITE(p, " vec4 viewPos = u_view * vec4(worldpos, 1.0);\n");
|
|
|
|
|
2012-12-20 13:10:42 +00:00
|
|
|
// Step 2: Color/Lighting
|
|
|
|
if (hasColor) {
|
2013-03-03 22:57:29 +00:00
|
|
|
WRITE(p, " lowp vec3 unlitColor = a_color0.rgb;\n");
|
2012-12-20 13:10:42 +00:00
|
|
|
} else {
|
2013-03-31 10:06:34 +00:00
|
|
|
WRITE(p, " lowp vec3 unlitColor = u_matambientalpha;\n");
|
2012-12-20 13:10:42 +00:00
|
|
|
}
|
|
|
|
// TODO: Declare variables for dots for shade mapping if needed.
|
|
|
|
|
2013-02-04 22:32:15 +00:00
|
|
|
const char *ambient = (gstate.materialupdate & 1) ? (hasColor ? "a_color0" : "u_matambientalpha") : "u_matambientalpha";
|
2012-12-20 17:31:21 +00:00
|
|
|
const char *diffuse = (gstate.materialupdate & 2) ? "unlitColor" : "u_matdiffuse";
|
2012-12-22 09:45:47 +00:00
|
|
|
const char *specular = (gstate.materialupdate & 4) ? "unlitColor" : "u_matspecular.rgb";
|
2012-12-20 13:10:42 +00:00
|
|
|
|
2013-03-27 10:21:02 +00:00
|
|
|
if (gstate.isLightingEnabled()) {
|
2013-03-03 22:57:29 +00:00
|
|
|
WRITE(p, " lowp vec4 lightSum0 = u_ambient * %s + vec4(u_matemissive, 0.0);\n", ambient);
|
|
|
|
WRITE(p, " lowp vec3 lightSum1 = vec3(0.0);\n");
|
2012-12-20 13:10:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Calculate lights if needed. If shade mapping is enabled, lights may need to be
|
2012-12-26 19:47:09 +00:00
|
|
|
// at least partially calculated.
|
2012-12-20 13:10:42 +00:00
|
|
|
for (int i = 0; i < 4; i++) {
|
|
|
|
if (doLight[i] == LIGHT_OFF)
|
|
|
|
continue;
|
2012-12-26 19:47:09 +00:00
|
|
|
|
2012-12-20 13:10:42 +00:00
|
|
|
GELightComputation comp = (GELightComputation)(gstate.ltype[i] & 3);
|
|
|
|
GELightType type = (GELightType)((gstate.ltype[i] >> 8) & 3);
|
|
|
|
|
|
|
|
if (type == GE_LIGHTTYPE_DIRECTIONAL)
|
|
|
|
WRITE(p, " vec3 toLight%i = u_lightpos%i;\n", i, i);
|
|
|
|
else
|
|
|
|
WRITE(p, " vec3 toLight%i = u_lightpos%i - worldpos;\n", i, i);
|
|
|
|
|
|
|
|
bool doSpecular = (comp != GE_LIGHTCOMP_ONLYDIFFUSE);
|
|
|
|
bool poweredDiffuse = comp == GE_LIGHTCOMP_BOTHWITHPOWDIFFUSE;
|
|
|
|
|
2012-12-20 22:28:58 +00:00
|
|
|
WRITE(p, " float dot%i = dot(normalize(toLight%i), worldnormal);\n", i, i);
|
2012-12-20 17:31:21 +00:00
|
|
|
if (poweredDiffuse) {
|
2012-12-21 22:43:48 +00:00
|
|
|
WRITE(p, " dot%i = pow(dot%i, u_matspecular.a);\n", i, i);
|
2012-12-20 17:31:21 +00:00
|
|
|
}
|
2012-12-26 19:47:09 +00:00
|
|
|
|
2012-12-20 13:10:42 +00:00
|
|
|
if (doLight[i] == LIGHT_DOTONLY)
|
2012-12-26 19:47:09 +00:00
|
|
|
continue; // TODO: Actually, might want specular dot.... TODO
|
2012-12-20 13:10:42 +00:00
|
|
|
|
2012-12-21 11:57:43 +00:00
|
|
|
WRITE(p, " float lightScale%i = 1.0;\n", i);
|
2012-12-20 17:31:21 +00:00
|
|
|
if (type != GE_LIGHTTYPE_DIRECTIONAL) {
|
|
|
|
// Attenuation
|
2012-12-20 21:44:49 +00:00
|
|
|
WRITE(p, " float distance%i = length(toLight%i);\n", i, i);
|
2012-12-20 22:28:58 +00:00
|
|
|
WRITE(p, " lightScale%i = 1.0 / dot(u_lightatt%i, vec3(1.0, distance%i, distance%i*distance%i));\n", i, i, i, i, i);
|
|
|
|
WRITE(p, " if (lightScale%i > 1.0) lightScale%i = 1.0;\n", i, i);
|
2012-12-20 17:31:21 +00:00
|
|
|
}
|
2012-12-20 22:47:10 +00:00
|
|
|
WRITE(p, " vec3 diffuse%i = (u_lightdiffuse%i * %s) * (max(dot%i, 0.0) * lightScale%i);\n", i, i, diffuse, i, i);
|
2012-12-20 17:31:21 +00:00
|
|
|
if (doSpecular) {
|
2013-03-27 10:21:02 +00:00
|
|
|
WRITE(p, " vec3 halfVec%i = normalize(normalize(toLight%i) + vec3(0.0, 0.0, 1.0));\n", i, i);
|
2012-12-20 21:44:49 +00:00
|
|
|
WRITE(p, " dot%i = dot(halfVec%i, worldnormal);\n", i, i);
|
2012-12-20 17:31:21 +00:00
|
|
|
WRITE(p, " if (dot%i > 0.0)\n", i);
|
2012-12-20 22:28:58 +00:00
|
|
|
WRITE(p, " lightSum1 += u_lightspecular%i * %s * (pow(dot%i, u_matspecular.a) * (dot%i * lightScale%i));\n", i, specular, i, i, i);
|
2012-12-20 17:31:21 +00:00
|
|
|
}
|
2012-12-20 21:44:49 +00:00
|
|
|
WRITE(p, " lightSum0 += vec4(u_lightambient%i + diffuse%i, 0.0);\n", i, i);
|
2012-12-20 17:31:21 +00:00
|
|
|
}
|
2012-12-20 13:10:42 +00:00
|
|
|
|
2013-03-27 10:21:02 +00:00
|
|
|
if (gstate.isLightingEnabled()) {
|
2012-12-20 13:10:42 +00:00
|
|
|
// Sum up ambient, emissive here.
|
2013-02-06 18:01:10 +00:00
|
|
|
WRITE(p, " v_color0 = clamp(lightSum0, 0.0, 1.0);\n");
|
2012-12-20 13:10:42 +00:00
|
|
|
if (lmode) {
|
2012-12-26 19:47:09 +00:00
|
|
|
WRITE(p, " v_color1 = clamp(lightSum1, 0.0, 1.0);\n");
|
2012-12-20 13:10:42 +00:00
|
|
|
} else {
|
2013-01-14 19:43:18 +00:00
|
|
|
WRITE(p, " v_color0 = clamp(v_color0 + vec4(lightSum1, 0.0), 0.0, 1.0);\n");
|
2012-12-20 13:10:42 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Lighting doesn't affect color.
|
|
|
|
if (hasColor) {
|
2012-12-20 17:31:21 +00:00
|
|
|
WRITE(p, " v_color0 = a_color0;\n");
|
2012-12-26 19:47:09 +00:00
|
|
|
} else {
|
2013-01-12 00:24:05 +00:00
|
|
|
WRITE(p, " v_color0 = u_matambientalpha;\n");
|
2012-12-20 13:10:42 +00:00
|
|
|
}
|
|
|
|
if (lmode)
|
2013-03-27 10:21:02 +00:00
|
|
|
WRITE(p, " v_color1 = vec3(0.0);\n");
|
2012-12-20 13:10:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Step 3: UV generation
|
|
|
|
if (doTexture) {
|
|
|
|
switch (gstate.getUVGenMode()) {
|
|
|
|
case 0: // Scale-offset. Easy.
|
|
|
|
WRITE(p, " v_texcoord = a_texcoord * u_uvscaleoffset.xy + u_uvscaleoffset.zw;\n");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 1: // Projection mapping.
|
|
|
|
switch (gstate.getUVProjMode()) {
|
|
|
|
case 0: // Use model space XYZ as source
|
2013-01-14 19:43:18 +00:00
|
|
|
WRITE(p, " vec3 temp_tc = a_position.xyz;\n");
|
2012-12-20 13:10:42 +00:00
|
|
|
break;
|
|
|
|
case 1: // Use unscaled UV as source
|
2013-02-10 01:18:01 +00:00
|
|
|
WRITE(p, " vec3 temp_tc = vec3(a_texcoord.xy * 2.0, 0.0);\n");
|
2012-12-20 13:10:42 +00:00
|
|
|
break;
|
|
|
|
case 2: // Use normalized transformed normal as source
|
2013-01-07 09:49:16 +00:00
|
|
|
WRITE(p, " vec3 temp_tc = normalize(a_normal);\n");
|
2012-12-20 13:10:42 +00:00
|
|
|
break;
|
|
|
|
case 3: // Use non-normalized transformed normal as source
|
2013-01-07 09:49:16 +00:00
|
|
|
WRITE(p, " vec3 temp_tc = a_normal;\n");
|
2012-12-20 13:10:42 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
// Transform by texture matrix
|
2012-12-20 17:31:21 +00:00
|
|
|
WRITE(p, " v_texcoord = (u_texmtx * vec4(temp_tc, 1.0)).xy;\n");
|
2012-12-20 13:10:42 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 2: // Shade mapping - use dots from light sources.
|
|
|
|
WRITE(p, " v_texcoord = vec2(dot%i, dot%i);\n", gstate.getUVLS0(), gstate.getUVLS1());
|
|
|
|
break;
|
|
|
|
|
2012-12-26 19:47:09 +00:00
|
|
|
case 3:
|
2012-12-20 13:10:42 +00:00
|
|
|
// ILLEGAL
|
|
|
|
break;
|
|
|
|
}
|
2013-03-27 10:21:02 +00:00
|
|
|
|
|
|
|
if (flipV) {
|
|
|
|
if (throughmode)
|
2013-03-16 12:35:51 +00:00
|
|
|
WRITE(p, " v_texcoord.y = 1.0 - v_texcoord.y;\n");
|
|
|
|
else
|
|
|
|
WRITE(p, " v_texcoord.y = 1.0 - v_texcoord.y * 2.0;\n");
|
2013-03-22 18:59:04 +00:00
|
|
|
}
|
2012-12-20 13:10:42 +00:00
|
|
|
}
|
2013-01-14 19:43:18 +00:00
|
|
|
|
|
|
|
// Compute fogdepth
|
|
|
|
if (enableFog)
|
|
|
|
WRITE(p, " v_fogdepth = (viewPos.z + u_fogcoef.x) * u_fogcoef.y;\n");
|
|
|
|
|
2012-12-20 13:10:42 +00:00
|
|
|
// Step 4: Final view and projection transforms.
|
2013-01-14 19:43:18 +00:00
|
|
|
WRITE(p, " gl_Position = u_proj * viewPos;\n");
|
2012-11-28 12:45:22 +00:00
|
|
|
}
|
2012-12-20 13:10:42 +00:00
|
|
|
WRITE(p, "}\n");
|
2012-11-01 15:19:01 +00:00
|
|
|
}
|
|
|
|
|