2012-08-06 21:09:43 +00:00
|
|
|
// Copyright (C) 2003 Dolphin 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
|
|
|
|
// the Free Software Foundation, version 2.0.
|
|
|
|
|
|
|
|
// 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 SVN repository and contact information can be found at
|
|
|
|
// http://code.google.com/p/dolphin-emu/
|
|
|
|
|
|
|
|
#ifndef _SHADERGENCOMMON_H
|
|
|
|
#define _SHADERGENCOMMON_H
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include "CommonTypes.h"
|
|
|
|
|
2012-09-02 18:00:15 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2013-03-26 22:03:10 +00:00
|
|
|
class ShaderGeneratorInterface
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
void Write(const char* fmt, ...) {}
|
|
|
|
const char* GetBuffer() { return NULL; }
|
|
|
|
void SetBuffer(char* buffer) { }
|
|
|
|
inline void SetConstantsUsed(unsigned int first_index, unsigned int last_index) {}
|
2013-03-29 21:24:49 +00:00
|
|
|
|
|
|
|
template<class uid_data>
|
|
|
|
uid_data& GetUidData() { return *(uid_data*)NULL; }
|
2013-03-26 22:03:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
template<class uid_data>
|
2013-03-29 21:24:49 +00:00
|
|
|
class ShaderUid : public ShaderGeneratorInterface
|
2012-08-06 21:09:43 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
ShaderUid()
|
|
|
|
{
|
2012-08-07 12:36:56 +00:00
|
|
|
// TODO: Move to Shadergen => can be optimized out
|
2012-08-06 21:09:43 +00:00
|
|
|
memset(values, 0, sizeof(values));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator == (const ShaderUid& obj) const
|
|
|
|
{
|
|
|
|
return memcmp(this->values, obj.values, sizeof(values)) == 0;
|
|
|
|
}
|
|
|
|
|
2013-03-29 13:54:44 +00:00
|
|
|
bool operator != (const ShaderUid& obj) const
|
|
|
|
{
|
|
|
|
return memcmp(this->values, obj.values, sizeof(values)) != 0;
|
|
|
|
}
|
|
|
|
|
2012-08-06 21:09:43 +00:00
|
|
|
// TODO: Store last frame used and order by that? makes much more sense anyway...
|
|
|
|
bool operator < (const ShaderUid& obj) const
|
|
|
|
{
|
2012-08-06 23:02:04 +00:00
|
|
|
for (unsigned int i = 0; i < sizeof(uid_data) / sizeof(u32); ++i)
|
2012-08-06 21:09:43 +00:00
|
|
|
{
|
|
|
|
if (this->values[i] < obj.values[i])
|
|
|
|
return true;
|
|
|
|
else if (this->values[i] > obj.values[i])
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-03-29 21:24:49 +00:00
|
|
|
template<class T>
|
2013-03-29 21:29:37 +00:00
|
|
|
inline T& GetUidData() { return data; }
|
2012-08-06 21:09:43 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
union
|
|
|
|
{
|
|
|
|
uid_data data;
|
|
|
|
u32 values[sizeof(uid_data) / sizeof(u32)];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2013-03-29 21:24:49 +00:00
|
|
|
class ShaderCode : public ShaderGeneratorInterface
|
2012-08-06 21:09:43 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
ShaderCode() : buf(NULL), write_ptr(NULL)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void Write(const char* fmt, ...)
|
|
|
|
{
|
|
|
|
va_list arglist;
|
|
|
|
va_start(arglist, fmt);
|
|
|
|
write_ptr += vsprintf(write_ptr, fmt, arglist);
|
|
|
|
va_end(arglist);
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* GetBuffer() { return buf; }
|
|
|
|
void SetBuffer(char* buffer) { buf = buffer; write_ptr = buffer; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
const char* buf;
|
|
|
|
char* write_ptr;
|
|
|
|
};
|
|
|
|
|
2013-03-29 21:24:49 +00:00
|
|
|
class ShaderConstantProfile : public ShaderGeneratorInterface
|
2012-09-02 18:00:15 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
ShaderConstantProfile(int num_constants) { constant_usage.resize(num_constants); }
|
|
|
|
|
|
|
|
inline void SetConstantsUsed(unsigned int first_index, unsigned int last_index)
|
|
|
|
{
|
|
|
|
for (unsigned int i = first_index; i < last_index+1; ++i)
|
|
|
|
constant_usage[i] = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool ConstantIsUsed(unsigned int index)
|
|
|
|
{
|
2013-03-29 19:33:28 +00:00
|
|
|
return true;
|
|
|
|
// return constant_usage[index];
|
2012-09-02 18:00:15 +00:00
|
|
|
}
|
|
|
|
private:
|
|
|
|
std::vector<bool> constant_usage; // TODO: Is vector<bool> appropriate here?
|
|
|
|
};
|
|
|
|
|
2012-08-06 21:09:43 +00:00
|
|
|
#endif // _SHADERGENCOMMON_H
|