2016-11-01 20:44:33 +00:00
|
|
|
/*
|
|
|
|
** DrawColumn 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
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "drawercodegen.h"
|
|
|
|
|
|
|
|
enum class DrawColumnVariant
|
|
|
|
{
|
2016-10-07 01:38:43 +00:00
|
|
|
Fill,
|
|
|
|
FillAdd,
|
|
|
|
FillAddClamp,
|
|
|
|
FillSubClamp,
|
|
|
|
FillRevSubClamp,
|
2016-10-07 04:40:29 +00:00
|
|
|
DrawCopy,
|
2016-10-07 01:38:43 +00:00
|
|
|
Draw,
|
|
|
|
DrawAdd,
|
|
|
|
DrawTranslated,
|
|
|
|
DrawTlatedAdd,
|
|
|
|
DrawShaded,
|
|
|
|
DrawAddClamp,
|
|
|
|
DrawAddClampTranslated,
|
|
|
|
DrawSubClamp,
|
|
|
|
DrawSubClampTranslated,
|
|
|
|
DrawRevSubClamp,
|
|
|
|
DrawRevSubClampTranslated
|
2016-09-29 03:21:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class DrawColumnCodegen : public DrawerCodegen
|
|
|
|
{
|
|
|
|
public:
|
2016-12-25 04:46:16 +00:00
|
|
|
void Generate(DrawColumnVariant variant, SSAValue args, SSAValue thread_data);
|
2016-10-07 01:38:43 +00:00
|
|
|
|
|
|
|
private:
|
2016-12-25 04:46:16 +00:00
|
|
|
void LoopShade(DrawColumnVariant variant, bool isSimpleShade);
|
|
|
|
void Loop(DrawColumnVariant variant, bool isSimpleShade, bool isNearestFilter);
|
|
|
|
SSAVec4i ProcessPixel(SSAInt sample_index, SSAVec4i bgcolor, DrawColumnVariant variant, bool isSimpleShade, bool isNearestFilter);
|
2016-10-07 10:45:21 +00:00
|
|
|
SSAVec4i ProcessPixelPal(SSAInt sample_index, SSAVec4i bgcolor, DrawColumnVariant variant, bool isSimpleShade);
|
2016-12-25 04:46:16 +00:00
|
|
|
SSAVec4i Sample(SSAInt frac, bool isNearestFilter);
|
2016-11-05 10:29:50 +00:00
|
|
|
SSAVec4i SampleLinear(SSAUBytePtr col0, SSAUBytePtr col1, SSAInt texturefracx, SSAInt texturefracy, SSAInt one, SSAInt height);
|
2016-10-07 01:38:43 +00:00
|
|
|
SSAInt ColormapSample(SSAInt frac);
|
2016-10-14 10:10:11 +00:00
|
|
|
SSAVec4i TranslateSample(SSAInt frac);
|
|
|
|
SSAInt TranslateSamplePal(SSAInt frac);
|
2016-10-07 10:45:21 +00:00
|
|
|
SSAVec4i Shade(SSAVec4i fgcolor, bool isSimpleShade);
|
|
|
|
SSAVec4i ShadePal(SSAInt palIndex, bool isSimpleShade);
|
|
|
|
bool IsPaletteInput(DrawColumnVariant variant);
|
2016-10-07 01:38:43 +00:00
|
|
|
|
|
|
|
SSAStack<SSAInt> stack_index, stack_frac;
|
|
|
|
|
|
|
|
SSAUBytePtr dest;
|
|
|
|
SSAUBytePtr source;
|
2016-11-05 10:29:50 +00:00
|
|
|
SSAUBytePtr source2;
|
2016-10-07 01:38:43 +00:00
|
|
|
SSAUBytePtr colormap;
|
|
|
|
SSAUBytePtr translation;
|
|
|
|
SSAUBytePtr basecolors;
|
|
|
|
SSAInt pitch;
|
|
|
|
SSAInt count;
|
|
|
|
SSAInt dest_y;
|
|
|
|
SSAInt iscale;
|
2016-11-05 10:29:50 +00:00
|
|
|
SSAInt texturefracx;
|
|
|
|
SSAInt textureheight;
|
|
|
|
SSAInt one;
|
2016-10-07 01:38:43 +00:00
|
|
|
SSAInt texturefrac;
|
|
|
|
SSAInt light;
|
|
|
|
SSAVec4i color;
|
|
|
|
SSAVec4i srccolor;
|
|
|
|
SSAInt srcalpha;
|
|
|
|
SSAInt destalpha;
|
|
|
|
SSABool is_simple_shade;
|
2016-11-05 10:29:50 +00:00
|
|
|
SSABool is_nearest_filter;
|
2016-10-07 01:38:43 +00:00
|
|
|
SSAShadeConstants shade_constants;
|
|
|
|
SSAWorkerThread thread;
|
2016-09-29 03:21:43 +00:00
|
|
|
};
|