[ create a new paste ] login | about

Link: http://codepad.org/dwYLaHvi    [ raw code | fork ]

D, pasted on Jul 21:
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
module cg;


private {
	import core.dllStuff;
	import core.plugin;

	import core.common;
	import renderer.renderer;
	import geometry.vertex;
	import geometry.vertexData;
	import derelict.opengl.gl;
	import glExtLoader;
	import derelict.cg.cg;
	import derelict.cgGL.cgGL;
	import core.maths;
	import std.string;
	import subsystems.texture;
	
	import renderer.gpuShader;
	import renderer.typedefs;
	
	import renderer.vertexKernel;
	import renderer.gpuShaderKernel;
	import renderer.gpuShaderState;
	import renderer.textureKernel;
	import renderer.textureState;
	import renderer.renderContextBuilder;
	
	import core.engine;
	import core.engineSubsystem;
	import core.systemCaps;
	import subsystems.render;
	import subsystems.gpuShader;
}


pragma (lib, "derelictGL.lib");
pragma (lib, "derelictCg.lib");
pragma (lib, "derelictCgGL.lib");
pragma (lib, "derelictUtil.lib");



class CgException : Exception
{
	this (char[] str) {
		super(str);
	}
}


private class CgCaps : SystemCaps
{
	this ()
	{
		set("loaded", true);
		engine.systemCaps.extend(this, "Cg");
	}
}


private class CgShaderSubsystem : GpuShaderSubsystem
{
	private static void cgErrorCallback()
	{
		CGerror error = cgGetError();
		char* errStr;
		if (error == CGerror.COMPILER_ERROR) {
			errStr = cgGetLastListing(cgContext);
		} else {
			errStr = cgGetErrorString(error);
		}
		
		throw new CgException("cgError: " ~ errStr[0 .. strlen(errStr)]);
	}


	this ()
	{
		//writefln("Initializing Cg");
		
		DerelictCG_Load();
		DerelictCGGL_Load();
		
		cgContext = cgCreateContext();
		cgSetErrorCallback(&cgErrorCallback);
	}
	
	
	private bool loadCgProgram(char[] programString, CGprofile profile, out CGprogram cgProg)
	{
		if (!cgGLIsProfileSupported(profile)) {
			return false;
		}
		
		char[] progStr = programString.replace("/+", "/*").replace("+/", "*/") ~ '\0';
		
		CGprogram prog;
		
		try {
			prog = cgCreateProgram(cgContext, CGenum.SOURCE, progStr, profile, "main", null);
			cgGLLoadProgram(prog);
		}
		catch (CgException err) {
			writefln(err);
			return false;
		}		
		finally {
			delete progStr;
		}
		
		cgProg = prog;
		
		return true;
	}


	IVertexShader loadVertexShader(char[] programString)
	{
		CGprogram prog;
		if (CgShaderKernel.vertexShadersSupported && loadCgProgram(programString, vertexProfile, prog)) {
			return new CgVertexShader(prog);
		} else {
			return null;
		}
	}
	
	
	IFragmentShader loadFragmentShader(char[] programString)
	{
		CGprogram prog;
		if (CgShaderKernel.fragmentShadersSupported && loadCgProgram(programString, fragmentProfile, prog)) {
			return new CgFragmentShader(prog);
		} else {
			return null;
		}
	}


	package {
		static CGcontext	cgContext;
		static CGprofile	vertexProfile;
		static CGprofile	fragmentProfile;
	}
}


private class CgVertexKernel : VertexKernel
{
	private VertexKernel old;
	
	this (VertexKernel old) {
		this.old = old;
	}
	
	
	void enableArray(VertexDataType vdt, VertexStoreType vst, uint stride, void* ptr)
	{
		if (!CgShaderKernel.vertexShaderBound) {
			return old.enableArray(vdt, vst, stride, ptr);
		}
		
		uint		components;
		uint		type;
		
		switch (vst) {
			case VertexStoreType.FLOAT:
			case VertexStoreType.FLOAT2:
			case VertexStoreType.FLOAT3:
			case VertexStoreType.FLOAT4:
			{
				type = GL_FLOAT;
				components = vst - VertexStoreType.FLOAT + 1;
			} break;
			
			case VertexStoreType.INT:
			{
				type = GL_INT;
				components = 1;
			} break;
			
			case VertexStoreType.INT1:
			case VertexStoreType.INT2:
			case VertexStoreType.INT3:
			case VertexStoreType.INT4:
			{
				type = GL_INT;
				components = vst - VertexStoreType.INT1 + 1;
			} break;

			
			case VertexStoreType.BYTE1:
			case VertexStoreType.BYTE2:
			case VertexStoreType.BYTE3:
			case VertexStoreType.BYTE4:
			{
				type = GL_BYTE;
				components = vst - VertexStoreType.BYTE1 + 1;
			} break;

			default:
				throw new Exception("*Renderer: invalid vertex attribute format");
		}
		
		enableArray(vdt);
		cgGLSetParameterPointer(cgParams[vdt - arrayOffset], components, type, stride, ptr);
	}


	private void enableArray(VertexDataType vdt)
	{
		CGparameter cgParam = cgParams[vdt - arrayOffset];
		if (cgParam) {
			debug writefln("disable vdt: %s cg param: %s", cast(uint)vdt, cast(uint)cgParam);
			cgGLEnableClientState(cgParam);
		}
	}
	
	
	void disableArray(VertexDataType vdt)
	{
		if (!CgShaderKernel.vertexShaderBound) {
			return old.disableArray(vdt);
		}
		
		CGparameter cgParam = cgParams[vdt - arrayOffset];
		if (cgParam) {
			debug writefln("disable vdt: %s cg param: %s", cast(uint)vdt, cast(uint)cgParam);
			cgGLDisableClientState(cgParam);
		}
	}


	package {
		static const uint arraySize		= cast(uint)(VertexDataType.max - VertexDataType.min + 1);
		static const uint arrayOffset	= cast(uint)VertexDataType.min;
		
		static CGparameter[arraySize]	cgParams;
	}
}


class CgShaderKernel : GPUShaderKernel
{
	private GPUShaderKernel old;
	
	this(GPUShaderKernel old)
	{
		this.old = old;
		
		if (!cgInitialized) {
			writefln("Initializing CgGL");
			
			DerelictGL_Load();
			loadAllOpenGLExtensions();

			try {
				CgShaderSubsystem.vertexProfile		= cgGLGetLatestProfile(CGGLenum.VERTEX);
				CgShaderSubsystem.fragmentProfile	= cgGLGetLatestProfile(CGGLenum.FRAGMENT);
		
				if (cgGLIsProfileSupported(CgShaderSubsystem.vertexProfile)) {
					cgGLSetOptimalOptions(CgShaderSubsystem.vertexProfile);
					vertexShadersSupported = true;
				}
					
				if (cgGLIsProfileSupported(CgShaderSubsystem.fragmentProfile)) {
					cgGLSetOptimalOptions(CgShaderSubsystem.fragmentProfile);
					fragmentShadersSupported = true;
				}
				
				writefln("CgGL initialization finished");
			}
			catch (CgException err) {
				writefln("Cg is not supported\nError: ", err);
			}

			cgInitialized = true;
		}
	}
	
	
	void apply(inout GPUShaderState state)
	{
		old.apply(state);
			
		with (state) {

			if (!applyState) {
				return;
			}
		
			vertexShaderBound		= (vertexShader !is null);
			fragmentShaderBound	= (fragmentShader !is null);
		}
	}
	
	
	void unapply(inout GPUShaderState state)
	{
		old.unapply(state);

		with (state) {
			if (!applyState) {
				return;
			}
			
			vertexShaderBound		= false;
			fragmentShaderBound	= false;
		}
	}
	
	private {
		static bool cgInitialized = false;
	}
	
	package {
		static bool vertexShadersSupported		= false;
		static bool fragmentShadersSupported	= false;

		static bool vertexShaderBound		= false;
		static bool fragmentShaderBound	= false;
	}
}


class CgTextureKernel : TextureKernel
{
	private TextureKernel old;
	
	this(TextureKernel old) {
		this.old = old;
	}
	
	
	void apply(inout TextureState state)
	{
		with (state) {
			if (!applyState) {
				return;
			}
			
			foreach (uint i, Texture t; texUnitTextures) {
				if (t !is null) {
					state.texUnits[i].bindTexture(t);
				}
			}
		}
		
		old.apply(state);
	}


	void unapply(inout TextureState state)
	{
		foreach (inout Texture t; texUnitTextures) {
			t = null;
		}
		
		old.unapply(state);
	}


	package {
		static Texture[TextureState.maxTexUnits]	texUnitTextures;
	}
}


private template MCgProgram()
{
	ShaderParam getParam(char[] name) {
		return cgGetNamedParameter(cgProgram, name ~ '\0');
	}
	
	
	void	setParam(ShaderParam param, float val) {
		cgGLSetParameter1f(cast(CGparameter)param, val);
	}
	
	
	void	setParam(ShaderParam param, vec2 val) {
		cgGLSetParameter2fv(cast(CGparameter)param, &val.x);
	}
	
	
	void	setParam(ShaderParam param, vec3 val) {
		cgGLSetParameter3fv(cast(CGparameter)param, &val.x);
	}
	
	
	void	setParam(ShaderParam param, vec4 val) {
		cgGLSetParameter4fv(cast(CGparameter)param, &val.x);
	}
	
	
	void	setParam(ShaderParam param, mat4 val) {
		cgGLSetMatrixParameterfr(cast(CGparameter)param, &val.data[0]);
	}

	void setStateMatrixParam(ShaderParam param, StateMatrix sm, MatrixTransform mt)
	{
		cgGLSetStateMatrixParameter(cast(CGparameter)param, cast(CGGLenum)sm, cast(CGGLenum)mt);
	}
	
	
	package {
		CGprogram cgProgram;
	}
}


class CgVertexShader : IVertexShader
{
	mixin MCgProgram;
	
	
	private void extractVaryingParams()
	{
		CGparameter leaf = cgGetFirstLeafParameter(cgProgram, CGenum.PROGRAM);
		
		while (leaf)
		{
			CGenum var	= cgGetParameterVariability(leaf);
			CGenum dir	= cgGetParameterDirection(leaf);
			
			if (var == CGenum.VARYING && dir != CGenum.OUT && dir != CGenum.ERROR) {
				CGresource res = cgGetParameterResource(leaf);
				
				if (res >= VertexDataType.min && res <= VertexDataType.max) {
					VertexDataType vdt = cast(VertexDataType)res;
					varyingParams ~= VaryingParam(leaf, vdt);
					debug writefln("extracted a param: ", cast(uint)vdt);
				}
			}
			
			leaf = cgGetNextLeafParameter(leaf);
		}
	}


	void bind() {
		foreach (inout VaryingParam vpar; varyingParams) {
			CgVertexKernel.cgParams[vpar.succ - CgVertexKernel.arrayOffset] = vpar.pred;
		}
		
		cgGLEnableProfile(CgShaderSubsystem.vertexProfile);
		cgGLBindProgram(cgProgram);
	}
	
	
	void unbind() {
		foreach (inout VaryingParam vpar; varyingParams) {
			CgVertexKernel.cgParams[vpar.succ - CgVertexKernel.arrayOffset] = null;
		}
		
		cgGLUnbindProgram(CgShaderSubsystem.vertexProfile);
		cgGLDisableProfile(CgShaderSubsystem.vertexProfile);
	}


	this (CGprogram prog)
	{
		this.cgProgram = prog;
		extractVaryingParams();
	}


	bool isVertexDataNeeded(VertexDataType vdt)
	{
		foreach (inout VaryingParam vp; varyingParams) {
			if (vp.succ == vdt) {
				return true;
			}
		}
		
		return false;
	}
	

	void setTexture(ShaderParam param, Texture tex) {
		assert	(false);		// not implemented
	}


	package {
		alias tuple!(CGparameter, VertexDataType)	VaryingParam;
		
		VaryingParam[]	varyingParams;
	}
}


class CgFragmentShader : IFragmentShader
{
	mixin MCgProgram;
	
	
	private void extractTexBindings()
	{
		CGparameter leaf = cgGetFirstLeafParameter(cgProgram, CGenum.PROGRAM);
		
		while (leaf)
		{
			CGenum var	= cgGetParameterVariability(leaf);
			CGenum dir	= cgGetParameterDirection(leaf);
			
			if (var != CGenum.VARYING && dir != CGenum.OUT && dir != CGenum.ERROR) {
				CGresource res = cgGetParameterResource(leaf);
				
				if (res >= CGresource.TEXUNIT0 && res <= CGresource.TEXUNIT15) {
					texBindings ~= TexBinding(leaf, res - CGresource.TEXUNIT0);
				}
			}
			
			leaf = cgGetNextLeafParameter(leaf);
		}
	}


	this (CGprogram prog)
	{
		this.cgProgram = prog;
		extractTexBindings();
	}


	void setTexture(ShaderParam param, Texture tex) {
		if (tex !is null && tex.id != -1) {
			foreach (inout TexBinding tb; texBindings) {
				if (tb.pred == cast(CGparameter)param) {
					CgTextureKernel.texUnitTextures[tb.succ] = tex;
					return;
				}
			}
		}
	}


	void bind() {
		cgGLEnableProfile(CgShaderSubsystem.fragmentProfile);
		cgGLBindProgram(cgProgram);
	}
	
	
	void unbind() {
		cgGLUnbindProgram(CgShaderSubsystem.fragmentProfile);
		cgGLDisableProfile(CgShaderSubsystem.fragmentProfile);
	}



	package {
		alias tuple!(CGparameter, uint)	TexBinding;
		
		TexBinding[]	texBindings;
	}
}


class CgVertexKernelFactory : VertexKernelFactory
{
	VertexKernel create() {
		return new CgVertexKernel(old.create);
	}
	
	this (VertexKernelFactory old) {
		this.old = old;
	}
	
	private VertexKernelFactory old;
}


class CgShaderKernelFactory : GPUShaderKernelFactory
{
	GPUShaderKernel create() {
		return new CgShaderKernel(old.create);
	}
	
	this (GPUShaderKernelFactory old) {
		this.old = old;
	}
	
	private GPUShaderKernelFactory old;
}


class CgTextureKernelFactory : TextureKernelFactory
{
	TextureKernel create() {
		return new CgTextureKernel(old.create);
	}
	
	this (TextureKernelFactory old) {
		this.old = old;
	}
	
	private TextureKernelFactory old;
}


void initializeCg()
{
	engine.registerSubsystem(new CgShaderSubsystem);
	
	with (subsystem!(RenderSubsystem).renderContextBuilder()) {
		vertexKF			= new CgVertexKernelFactory(vertexKF);
		gpuShaderKF		= new CgShaderKernelFactory(gpuShaderKF);
		textureKF			= new CgTextureKernelFactory(textureKF);
	}
	
	new CgCaps;		// tell the engine that Cg is supported from now on
}



class CgPlugin : IPlugin
{
	static class CgComponent : IPluginComponent
	{
		char[] name() {
			return "opengl.cg";
		}

		char[][] dependencies() {
			static char[][] deps = ["opengl.window", "opengl.renderer"];
			return deps;
		}

		bool initialize(IPluginInterface pi) {
			initializeCg();
			return true;
		}
	}


	IPluginComponent[] components()
	{
		static IPluginComponent[1] comp;
		if (comp[0] is null) {
			comp[0] = new CgComponent;
		}
		return comp;
	}
}


export extern(C) IPlugin createPlugin()
{
	//writefln("cg.createPlugin called");
	return new CgPlugin;
}


Create a new paste based on this one


Comments: