-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathc_shader.lua
200 lines (171 loc) · 6.24 KB
/
c_shader.lua
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
ViewShader = newclass("ViewShader")
SHADER_ZOOM_DEFAULT = 2.0
SHADER_ZOOM_MIN = 0.5
SHADER_ZOOM_MAX = 10.0
SHADER_FARCLIP_DEFAULT = 1000.0
SHADER_FARCLIP_MIN = 100
SHADER_FARCLIP_MAX = 2000
SHADER_NEARCLIP_DEFAULT = 0.1
SHADER_NEARCLIP_MIN = -100.0
SHADER_NEARCLIP_MAX = 100.0
SHADER_SATURATION_DEFAULT = 1.0
SHADER_SATURATION_MIN = -6
SHADER_SATURATION_MAX = 6
function ViewShader:init()
self.zoom = SHADER_ZOOM_DEFAULT
self.farClip = SHADER_FARCLIP_DEFAULT
self.nearClip = SHADER_NEARCLIP_DEFAULT
self.saturation = SHADER_SATURATION_DEFAULT
self.ligthing = true
self.equalColor = false
self.camera = getCamera()
self.shader, self.tec = dxCreateShader( "fx/clientshader.fx", 0,0,false,"all")
self.shaderEnabled = false
self.lodModels = {}
if self.shader then
dxSetShaderValue( self.shader, "uScreenHeight", SCREEN_HEIGHT)
dxSetShaderValue( self.shader, "uScreenWidth", SCREEN_WIDTH)
outputChatBox("Loaded shader with tec: " ..self.tec)
else
outputChatBox("Could not load shader")
--TODO error?
end
end
function ViewShader:setLightingEnabled(aValue)
if(aValue == nil) then return end
self.ligthing = aValue
dxSetShaderValue( self.shader, "uLighting", self.ligthing)
end
function ViewShader:setEqualColorEnabled(aValue)
if(aValue == nil) then return end
self.equalColor = aValue
dxSetShaderValue( self.shader, "uEqualColor", self.equalColor)
end
function ViewShader:setZoom(aValue)
if(not aValue) then return end
self.zoom = aValue
dxSetShaderValue( self.shader, "uZoom", self.zoom)
end
function ViewShader:setFarClip(aValue)
if(not aValue) then return end
self.farClip = aValue
dxSetShaderValue( self.shader, "uFarClip", self.farClip)
end
function ViewShader:setNearClip(aValue)
if(not aValue) then return end
self.nearClip = aValue
dxSetShaderValue( self.shader, "uNearClip", self.nearClip)
end
function ViewShader:setSaturation(aValue)
if(not aValue) then return end
self.saturation = aValue
dxSetShaderValue( self.shader, "uSaturation", self.saturation)
end
function ViewShader:toggleShader()
if(self.shaderEnabled) then
self:disableShader()
else
self:enableShader()
end
end
function ViewShader:enableShader()
if(not self.shaderEnabled) then
engineApplyShaderToWorldTexture ( self.shader, "*" )
dxSetShaderValue( self.shader, "uZoom", self.zoom)
dxSetShaderValue( self.shader, "uFarClip", self.farClip)
dxSetShaderValue( self.shader, "uNearClip", self.nearClip)
self.shaderEnabled = true
end
end
function ViewShader:disableShader()
if(self.shaderEnabled) then
engineRemoveShaderFromWorldTexture ( self.shader, "*" )
setCameraTarget(getLocalPlayer())
self.shaderEnabled = false
end
end
function ViewShader:isShaderEnabled()
return self.shaderEnabled
end
function ViewShader:getProjectionMatrix()
local K = matrix{
{0.63281273 / SCREEN_HEIGHT * self.zoom,0,0,0},
{0,2.0 / SCREEN_WIDTH * self.zoom,0,0},
{0,0,1.0 / (self.farClip - self.nearClip), -self.nearClip / (self.farClip - self.nearClip)},
{0,0,0,1}
}
return K
end
function ViewShader:getViewMatrix()
--Normalized fwVec and upVec.
local cameraMatrix = getElementMatrix(getCamera())
local pos = matrix{cameraMatrix[4][1],cameraMatrix[4][2],cameraMatrix[4][3]}
local fwVec = matrix{cameraMatrix[2][1],cameraMatrix[2][2],cameraMatrix[2][3]}
local upVec = matrix{cameraMatrix[3][1],cameraMatrix[3][2],cameraMatrix[3][3]}
-- The "forward" vector.
local zaxis = fwVec
-- The left vector.
local temp_xaxis = matrix.cross( upVec, fwVec )
--temp_xaxis_len = matrix.len(temp_xaxis)
--xaxis = temp_xaxis / temp_xaxis_len-- The "right" vector.
local xaxis = temp_xaxis
-- The "up" vector.
local yaxis = matrix.cross( zaxis, xaxis )
-- Create a 4x4 view matrix from the right, up, forward and eye position vectors
local viewMatrix = matrix{
{ xaxis[1][1], yaxis[1][1], zaxis[1][1], 0 },
{ xaxis[2][1], yaxis[2][1], zaxis[2][1], 0 },
{ xaxis[3][1], yaxis[3][1], zaxis[3][1], 0 },
{-matrix.scalar(xaxis,pos), -matrix.scalar(yaxis,pos), -matrix.scalar(zaxis,pos), 1 }
}
return viewMatrix;
end
function ViewShader:getInverseProjectionMatrix()
return matrix.invert(self:getProjectionMatrix())
end
function ViewShader:getScreenFromWorldCoordinates(x,y,z)
local worldPos = matrix{{x,y,z,1}}
local projection = matrix.copy(self:getProjectionMatrix())
local view = matrix.copy(self:getViewMatrix())
local posWorldView = matrix.mul(worldPos,view)
local position = matrix.mul(posWorldView, projection)
position[1][1] = position[1][1] / position[1][4]
position[1][2] = position[1][2] / position[1][4]
position[1][1] = (position[1][1] + 1) * SCREEN_WIDTH / 2
position[1][2] = (position[1][2] + 1) * SCREEN_HEIGHT / 2
return position[1][1], position[1][2]
end
function ViewShader:getWorldFromPosition(x,y, worldZ)
local x = (2.0 * x) / SCREEN_WIDTH - 1.0
local y = - 2.0 * y / SCREEN_HEIGHT + 1
--Get World, View and Projection matrix.
local world = matrix.transpose(matrix{{x,y,0,1}})
local view = matrix.copy(self:getViewMatrix())
local projection = matrix.copy(self:getProjectionMatrix())
local viewProjection = matrix.mul(projection,view)
--Get inverse of matrix.
local inverseViewProjection = matrix.invert(matrix.copy(viewProjection))
--Calculate world position.
world = matrix.mul(matrix.copy(world),matrix.copy(inverseViewProjection))
return world[1][1],world[1][2],0
end
function ViewShader:increaseObjectRenderDistance()
for i,object in pairs (getElementsByType("object")) do
local model = getElementModel(object)
if model then
local x,y,z = getElementPosition(object)
local a,b,c = getElementRotation(object)
self.lodModels[i] = createObject(model,x,y,z,a,b,c,true)
setElementDimension(self.lodModels[i],getElementDimension(object))
setObjectScale(self.lodModels[i],getObjectScale(object))
setLowLODElement(object,self.lodModels[i])
setElementDoubleSided(self.lodModels[i],isElementDoubleSided(object))
engineSetModelLODDistance(model,1000)
end
end
end
function ViewShader:resetObjectRenderDistance()
for i,object in pairs (self.lodModels) do
destroyElement(object)
end
end