summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/Src/NativeVertexFormat.h
blob: 499a1b451d493f1624349a5f6853df41d484c67c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
// 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 _NATIVEVERTEXFORMAT_H
#define _NATIVEVERTEXFORMAT_H

#include "PluginSpecs.h"

// m_components
enum {
	VB_HAS_POSMTXIDX =(1<<1),
	VB_HAS_TEXMTXIDX0=(1<<2),
	VB_HAS_TEXMTXIDX1=(1<<3),
	VB_HAS_TEXMTXIDX2=(1<<4),
	VB_HAS_TEXMTXIDX3=(1<<5),
	VB_HAS_TEXMTXIDX4=(1<<6),
	VB_HAS_TEXMTXIDX5=(1<<7),
	VB_HAS_TEXMTXIDX6=(1<<8),
	VB_HAS_TEXMTXIDX7=(1<<9),
	VB_HAS_TEXMTXIDXALL=(0xff<<2),

	//VB_HAS_POS=0, // Implied, it always has pos! don't bother testing
	VB_HAS_NRM0=(1<<10),
	VB_HAS_NRM1=(1<<11),
	VB_HAS_NRM2=(1<<12),
	VB_HAS_NRMALL=(7<<10),

	VB_HAS_COL0=(1<<13),
	VB_HAS_COL1=(1<<14),

	VB_HAS_UV0=(1<<15),
	VB_HAS_UV1=(1<<16),
	VB_HAS_UV2=(1<<17),
	VB_HAS_UV3=(1<<18),
	VB_HAS_UV4=(1<<19),
	VB_HAS_UV5=(1<<20),
	VB_HAS_UV6=(1<<21),
	VB_HAS_UV7=(1<<22),
	VB_HAS_UVALL=(0xff<<15),
	VB_HAS_UVTEXMTXSHIFT=13,
};

#define LOADERDECL __cdecl
typedef void (LOADERDECL *TPipelineFunction)();

enum VarType
{
	VAR_BYTE,
	VAR_UNSIGNED_BYTE,
	VAR_SHORT,
	VAR_UNSIGNED_SHORT,
	VAR_FLOAT,
};

struct PortableVertexDeclaration
{
	int stride;

	int num_normals;
	int normal_offset[3];
	VarType normal_gl_type;
	int normal_gl_size;
	VarType color_gl_type;  // always GL_UNSIGNED_BYTE
	int color_offset[2];
	VarType texcoord_gl_type[8];
	//int texcoord_gl_size[8];
	int texcoord_offset[8];
	int texcoord_size[8];
	int posmtx_offset;
};

// The implementation of this class is specific for GL/DX, so NativeVertexFormat.cpp
// is in the respective plugin, not here in VideoCommon.

// Note that this class can't just invent arbitrary vertex formats out of its input - 
// all the data loading code must always be made compatible.
class NativeVertexFormat
{
public:
	virtual ~NativeVertexFormat() {}

	virtual void Initialize(const PortableVertexDeclaration &vtx_decl) = 0;
	virtual void SetupVertexPointers() const = 0;
	virtual void EnableComponents(u32 components) {}

	int GetVertexStride() const { return vertex_stride; }

	static NativeVertexFormat *Create();

	// TODO: move these in under private:
	u32 m_components;  // VB_HAS_X. Bitmask telling what vertex components are present.
	u32 vertex_stride;

protected:
	// Let subclasses construct.
	NativeVertexFormat() {}

private:
	DISALLOW_COPY_AND_ASSIGN(NativeVertexFormat);
};

#endif  // _NATIVEVERTEXFORMAT_H