2016-11-01 20:44:33 +00:00
|
|
|
/*
|
|
|
|
** DrawWall code generation
|
|
|
|
** Copyright (c) 2016 Magnus Norddahl
|
|
|
|
**
|
|
|
|
** This software is provided 'as-is', without any express or implied
|
|
|
|
** warranty. In no event will the authors be held liable for any damages
|
|
|
|
** arising from the use of this software.
|
|
|
|
**
|
|
|
|
** Permission is granted to anyone to use this software for any purpose,
|
|
|
|
** including commercial applications, and to alter it and redistribute it
|
|
|
|
** freely, subject to the following restrictions:
|
|
|
|
**
|
|
|
|
** 1. The origin of this software must not be misrepresented; you must not
|
|
|
|
** claim that you wrote the original software. If you use this software
|
|
|
|
** in a product, an acknowledgment in the product documentation would be
|
|
|
|
** appreciated but is not required.
|
|
|
|
** 2. Altered source versions must be plainly marked as such, and must not be
|
|
|
|
** misrepresented as being the original software.
|
|
|
|
** 3. This notice may not be removed or altered from any source distribution.
|
|
|
|
**
|
|
|
|
*/
|
2016-09-29 03:21:43 +00:00
|
|
|
|
2016-11-28 16:31:56 +00:00
|
|
|
#include "precomp.h"
|
2016-11-29 02:32:24 +00:00
|
|
|
#include "timestamp.h"
|
2016-11-28 16:31:56 +00:00
|
|
|
#include "fixedfunction/drawwallcodegen.h"
|
|
|
|
#include "ssa/ssa_function.h"
|
|
|
|
#include "ssa/ssa_scope.h"
|
|
|
|
#include "ssa/ssa_for_block.h"
|
|
|
|
#include "ssa/ssa_if_block.h"
|
|
|
|
#include "ssa/ssa_stack.h"
|
|
|
|
#include "ssa/ssa_function.h"
|
|
|
|
#include "ssa/ssa_struct_type.h"
|
|
|
|
#include "ssa/ssa_value.h"
|
2016-09-29 03:21:43 +00:00
|
|
|
|
2016-12-27 06:18:04 +00:00
|
|
|
void DrawWallCodegen::Generate(DrawWallVariant variant, SSAValue args, SSAValue thread_data)
|
2016-09-29 03:21:43 +00:00
|
|
|
{
|
2016-10-08 07:29:26 +00:00
|
|
|
dest = args[0][0].load(true);
|
2016-12-27 06:18:04 +00:00
|
|
|
source = args[0][1].load(true);
|
|
|
|
source2 = args[0][5].load(true);
|
2016-10-08 07:29:26 +00:00
|
|
|
pitch = args[0][9].load(true);
|
|
|
|
count = args[0][10].load(true);
|
|
|
|
dest_y = args[0][11].load(true);
|
2016-12-27 06:18:04 +00:00
|
|
|
texturefrac = args[0][12].load(true);
|
|
|
|
texturefracx = args[0][16].load(true);
|
|
|
|
iscale = args[0][20].load(true);
|
|
|
|
textureheight = args[0][24].load(true);
|
|
|
|
light = args[0][28].load(true);
|
2016-10-08 07:29:26 +00:00
|
|
|
srcalpha = args[0][32].load(true);
|
|
|
|
destalpha = args[0][33].load(true);
|
|
|
|
SSAShort light_alpha = args[0][34].load(true);
|
|
|
|
SSAShort light_red = args[0][35].load(true);
|
|
|
|
SSAShort light_green = args[0][36].load(true);
|
|
|
|
SSAShort light_blue = args[0][37].load(true);
|
|
|
|
SSAShort fade_alpha = args[0][38].load(true);
|
|
|
|
SSAShort fade_red = args[0][39].load(true);
|
|
|
|
SSAShort fade_green = args[0][40].load(true);
|
|
|
|
SSAShort fade_blue = args[0][41].load(true);
|
|
|
|
SSAShort desaturate = args[0][42].load(true);
|
|
|
|
SSAInt flags = args[0][43].load(true);
|
2016-12-20 22:21:34 +00:00
|
|
|
start_z = args[0][44].load(true);
|
|
|
|
step_z = args[0][45].load(true);
|
|
|
|
dynlights = args[0][46].load(true);
|
|
|
|
num_dynlights = args[0][47].load(true);
|
2016-09-29 05:38:33 +00:00
|
|
|
shade_constants.light = SSAVec4i(light_blue.zext_int(), light_green.zext_int(), light_red.zext_int(), light_alpha.zext_int());
|
|
|
|
shade_constants.fade = SSAVec4i(fade_blue.zext_int(), fade_green.zext_int(), fade_red.zext_int(), fade_alpha.zext_int());
|
|
|
|
shade_constants.desaturate = desaturate.zext_int();
|
|
|
|
|
2016-10-08 07:29:26 +00:00
|
|
|
thread.core = thread_data[0][0].load(true);
|
|
|
|
thread.num_cores = thread_data[0][1].load(true);
|
|
|
|
thread.pass_start_y = thread_data[0][2].load(true);
|
|
|
|
thread.pass_end_y = thread_data[0][3].load(true);
|
2016-09-30 05:27:25 +00:00
|
|
|
|
2016-10-01 09:47:21 +00:00
|
|
|
is_simple_shade = (flags & DrawWallArgs::simple_shade) == SSAInt(DrawWallArgs::simple_shade);
|
|
|
|
is_nearest_filter = (flags & DrawWallArgs::nearest_filter) == SSAInt(DrawWallArgs::nearest_filter);
|
2016-09-29 05:38:33 +00:00
|
|
|
|
2016-09-30 05:27:25 +00:00
|
|
|
count = count_for_thread(dest_y, count, thread);
|
|
|
|
dest = dest_for_thread(dest_y, pitch, dest, thread);
|
|
|
|
|
|
|
|
pitch = pitch * thread.num_cores;
|
|
|
|
|
2016-12-27 06:18:04 +00:00
|
|
|
stack_frac.store(texturefrac + iscale * skipped_by_thread(dest_y, thread));
|
|
|
|
fracstep = iscale * thread.num_cores;
|
|
|
|
one = ((0x80000000 + textureheight - 1) / textureheight) * 2 + 1;
|
2016-09-29 05:38:33 +00:00
|
|
|
|
2016-12-21 06:33:28 +00:00
|
|
|
start_z = start_z + step_z * SSAFloat(skipped_by_thread(dest_y, thread));
|
|
|
|
step_z = step_z * SSAFloat(thread.num_cores);
|
|
|
|
|
2016-09-29 05:38:33 +00:00
|
|
|
SSAIfBlock branch;
|
|
|
|
branch.if_block(is_simple_shade);
|
2016-12-27 06:18:04 +00:00
|
|
|
LoopShade(variant, true);
|
2016-09-29 05:38:33 +00:00
|
|
|
branch.else_block();
|
2016-12-27 06:18:04 +00:00
|
|
|
LoopShade(variant, false);
|
2016-09-29 05:38:33 +00:00
|
|
|
branch.end_block();
|
|
|
|
}
|
|
|
|
|
2016-12-27 06:18:04 +00:00
|
|
|
void DrawWallCodegen::LoopShade(DrawWallVariant variant, bool isSimpleShade)
|
2016-09-29 05:38:33 +00:00
|
|
|
{
|
|
|
|
SSAIfBlock branch;
|
|
|
|
branch.if_block(is_nearest_filter);
|
2016-12-27 06:18:04 +00:00
|
|
|
Loop(variant, isSimpleShade, true);
|
2016-09-29 05:38:33 +00:00
|
|
|
branch.else_block();
|
2016-12-27 06:18:04 +00:00
|
|
|
stack_frac.store(stack_frac.load() - (one / 2));
|
|
|
|
Loop(variant, isSimpleShade, false);
|
2016-09-29 05:38:33 +00:00
|
|
|
branch.end_block();
|
|
|
|
}
|
|
|
|
|
2016-12-27 06:18:04 +00:00
|
|
|
void DrawWallCodegen::Loop(DrawWallVariant variant, bool isSimpleShade, bool isNearestFilter)
|
2016-09-29 05:38:33 +00:00
|
|
|
{
|
2016-10-01 09:47:21 +00:00
|
|
|
stack_index.store(SSAInt(0));
|
2016-12-20 22:21:34 +00:00
|
|
|
stack_z.store(start_z);
|
2016-09-29 05:38:33 +00:00
|
|
|
{
|
|
|
|
SSAForBlock loop;
|
|
|
|
SSAInt index = stack_index.load();
|
2016-12-20 22:21:34 +00:00
|
|
|
z = stack_z.load();
|
2016-09-29 05:38:33 +00:00
|
|
|
loop.loop_block(index < count);
|
|
|
|
|
2016-12-27 06:18:04 +00:00
|
|
|
SSAInt frac = stack_frac.load();
|
2016-09-30 05:27:25 +00:00
|
|
|
SSAInt offset = index * pitch * 4;
|
2016-09-29 05:38:33 +00:00
|
|
|
|
2016-12-27 06:18:04 +00:00
|
|
|
SSAVec4i bgcolor = dest[offset].load_vec4ub(false);
|
|
|
|
SSAVec4i color = Blend(Shade(Sample(frac, isNearestFilter), isSimpleShade), bgcolor, variant);
|
|
|
|
dest[offset].store_vec4ub(color);
|
2016-09-29 05:38:33 +00:00
|
|
|
|
2016-12-20 22:21:34 +00:00
|
|
|
stack_z.store(z + step_z);
|
2016-10-08 07:29:26 +00:00
|
|
|
stack_index.store(index.add(SSAInt(1), true, true));
|
2016-12-27 06:18:04 +00:00
|
|
|
stack_frac.store(frac + fracstep);
|
2016-09-29 05:38:33 +00:00
|
|
|
loop.end_block();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-27 06:18:04 +00:00
|
|
|
SSAVec4i DrawWallCodegen::Sample(SSAInt frac, bool isNearestFilter)
|
2016-09-29 05:38:33 +00:00
|
|
|
{
|
2016-09-30 05:27:25 +00:00
|
|
|
if (isNearestFilter)
|
|
|
|
{
|
2016-12-27 06:18:04 +00:00
|
|
|
SSAInt sample_index = ((frac >> FRACBITS) * textureheight) >> FRACBITS;
|
|
|
|
return source[sample_index * 4].load_vec4ub(false);
|
2016-09-30 05:27:25 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-12-27 06:18:04 +00:00
|
|
|
return SampleLinear(source, source2, texturefracx, frac, one, textureheight);
|
2016-09-30 05:27:25 +00:00
|
|
|
}
|
2016-09-29 05:38:33 +00:00
|
|
|
}
|
|
|
|
|
2016-11-05 10:29:50 +00:00
|
|
|
SSAVec4i DrawWallCodegen::SampleLinear(SSAUBytePtr col0, SSAUBytePtr col1, SSAInt texturefracx, SSAInt texturefracy, SSAInt one, SSAInt height)
|
|
|
|
{
|
|
|
|
SSAInt frac_y0 = (texturefracy >> FRACBITS) * height;
|
|
|
|
SSAInt frac_y1 = ((texturefracy + one) >> FRACBITS) * height;
|
|
|
|
SSAInt y0 = frac_y0 >> FRACBITS;
|
|
|
|
SSAInt y1 = frac_y1 >> FRACBITS;
|
|
|
|
|
|
|
|
SSAVec4i p00 = col0[y0 * 4].load_vec4ub(true);
|
|
|
|
SSAVec4i p01 = col0[y1 * 4].load_vec4ub(true);
|
|
|
|
SSAVec4i p10 = col1[y0 * 4].load_vec4ub(true);
|
|
|
|
SSAVec4i p11 = col1[y1 * 4].load_vec4ub(true);
|
|
|
|
|
|
|
|
SSAInt inv_b = texturefracx;
|
|
|
|
SSAInt a = (frac_y1 >> (FRACBITS - 4)) & 15;
|
|
|
|
SSAInt inv_a = 16 - a;
|
|
|
|
SSAInt b = 16 - inv_b;
|
|
|
|
|
|
|
|
return (p00 * (a * b) + p01 * (inv_a * b) + p10 * (a * inv_b) + p11 * (inv_a * inv_b) + 127) >> 8;
|
|
|
|
}
|
|
|
|
|
2016-12-27 06:18:04 +00:00
|
|
|
SSAVec4i DrawWallCodegen::Shade(SSAVec4i fg, bool isSimpleShade)
|
2016-09-29 05:38:33 +00:00
|
|
|
{
|
2016-12-20 22:21:34 +00:00
|
|
|
SSAVec4i c;
|
2016-09-29 05:38:33 +00:00
|
|
|
if (isSimpleShade)
|
2016-12-27 06:18:04 +00:00
|
|
|
c = shade_bgra_simple(fg, light);
|
2016-09-29 05:38:33 +00:00
|
|
|
else
|
2016-12-27 06:18:04 +00:00
|
|
|
c = shade_bgra_advanced(fg, light, shade_constants);
|
2016-12-20 22:21:34 +00:00
|
|
|
|
2017-01-03 20:16:21 +00:00
|
|
|
stack_lit_color.store(SSAVec4i(0));
|
2016-12-20 22:21:34 +00:00
|
|
|
stack_light_index.store(SSAInt(0));
|
|
|
|
|
|
|
|
SSAForBlock block;
|
|
|
|
SSAInt light_index = stack_light_index.load();
|
|
|
|
SSAVec4i lit_color = stack_lit_color.load();
|
|
|
|
block.loop_block(light_index < num_dynlights);
|
|
|
|
{
|
2016-12-22 07:50:52 +00:00
|
|
|
SSAVec4i light_color = SSAUBytePtr(SSAValue(dynlights[light_index][0]).v).load_vec4ub(true);
|
2016-12-20 22:21:34 +00:00
|
|
|
SSAFloat light_x = dynlights[light_index][1].load(true);
|
2017-01-02 05:52:50 +00:00
|
|
|
SSAFloat light_y = dynlights[light_index][2].load(true);
|
2016-12-20 22:21:34 +00:00
|
|
|
SSAFloat light_z = dynlights[light_index][3].load(true);
|
|
|
|
SSAFloat light_rcp_radius = dynlights[light_index][4].load(true);
|
|
|
|
|
|
|
|
// L = light-pos
|
|
|
|
// dist = sqrt(dot(L, L))
|
|
|
|
// attenuation = 1 - MIN(dist * (1/radius), 1)
|
|
|
|
SSAFloat Lxy2 = light_x; // L.x*L.x + L.y*L.y
|
|
|
|
SSAFloat Lz = light_z - z;
|
2017-01-02 05:52:50 +00:00
|
|
|
SSAFloat dist2 = Lxy2 + Lz * Lz;
|
|
|
|
SSAFloat rcp_dist = SSAFloat::rsqrt(dist2);
|
|
|
|
SSAFloat dist = dist2 * rcp_dist;
|
|
|
|
SSAFloat distance_attenuation = SSAFloat(256.0f) - SSAFloat::MIN(dist * light_rcp_radius, SSAFloat(256.0f));
|
|
|
|
|
|
|
|
// The simple light type
|
|
|
|
SSAFloat simple_attenuation = distance_attenuation;
|
|
|
|
|
|
|
|
// The point light type
|
|
|
|
// diffuse = dot(N,L) * attenuation
|
|
|
|
SSAFloat point_attenuation = light_y * rcp_dist * distance_attenuation;
|
|
|
|
|
|
|
|
SSAInt attenuation = SSAInt((light_y == SSAFloat(0.0f)).select(simple_attenuation, point_attenuation), true);
|
2017-01-03 20:16:21 +00:00
|
|
|
SSAVec4i contribution = (light_color * attenuation) >> 8;
|
2016-12-20 22:21:34 +00:00
|
|
|
|
|
|
|
stack_lit_color.store(lit_color + contribution);
|
|
|
|
stack_light_index.store(light_index + 1);
|
|
|
|
}
|
|
|
|
block.end_block();
|
|
|
|
|
2017-01-03 20:16:21 +00:00
|
|
|
return c + ((stack_lit_color.load() * fg) >> 8);
|
2016-09-29 05:38:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SSAVec4i DrawWallCodegen::Blend(SSAVec4i fg, SSAVec4i bg, DrawWallVariant variant)
|
|
|
|
{
|
|
|
|
switch (variant)
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
case DrawWallVariant::Opaque:
|
|
|
|
return blend_copy(fg);
|
|
|
|
case DrawWallVariant::Masked:
|
|
|
|
return blend_alpha_blend(fg, bg);
|
|
|
|
case DrawWallVariant::Add:
|
|
|
|
case DrawWallVariant::AddClamp:
|
2016-10-16 13:41:47 +00:00
|
|
|
return blend_add(fg, bg, srcalpha, calc_blend_bgalpha(fg, destalpha));
|
2016-09-29 05:38:33 +00:00
|
|
|
case DrawWallVariant::SubClamp:
|
2016-10-16 13:41:47 +00:00
|
|
|
return blend_sub(fg, bg, srcalpha, calc_blend_bgalpha(fg, destalpha));
|
2016-09-29 05:38:33 +00:00
|
|
|
case DrawWallVariant::RevSubClamp:
|
2016-10-16 13:41:47 +00:00
|
|
|
return blend_revsub(fg, bg, srcalpha, calc_blend_bgalpha(fg, destalpha));
|
2016-09-29 05:38:33 +00:00
|
|
|
}
|
2016-09-29 03:21:43 +00:00
|
|
|
}
|