Skip to content

Commit 502f6f3

Browse files
committed
sanitize file path
1 parent a615d2a commit 502f6f3

File tree

5 files changed

+111
-7
lines changed

5 files changed

+111
-7
lines changed

assets/shaders/forward_render.pmfx

+71-6
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,30 @@ struct vs_input_skinned
5656

5757
struct vs_instance_input
5858
{
59-
float4 world_matrix_0 : TEXCOORD6;
60-
float4 world_matrix_1 : TEXCOORD7;
61-
float4 world_matrix_2 : TEXCOORD8;
62-
float4 world_matrix_3 : TEXCOORD9;
63-
float4 user_data : TEXCOORD10;
64-
float4 user_data2 : TEXCOORD11;
59+
if:(INSTANCED)
60+
{
61+
float4 world_matrix_0 : TEXCOORD6;
62+
float4 world_matrix_1 : TEXCOORD7;
63+
float4 world_matrix_2 : TEXCOORD8;
64+
float4 world_matrix_3 : TEXCOORD9;
65+
float4 user_data : TEXCOORD10;
66+
float4 user_data2 : TEXCOORD11;
67+
}
68+
};
69+
70+
struct vs_input_multi
71+
{
72+
float4 position : POSITION;
73+
float4 normal : TEXCOORD0;
74+
float4 texcoord : TEXCOORD1;
75+
float4 tangent : TEXCOORD2;
76+
float4 bitangent : TEXCOORD3;
77+
78+
if:(SKINNED)
79+
{
80+
float4 blend_indices : TEXCOORD4;
81+
float4 blend_weights : TEXCOORD5;
82+
}
6583
};
6684

6785
struct ps_output
@@ -212,6 +230,39 @@ vs_output vs_main_instanced( vs_input input, vs_instance_input instance_input )
212230
return output;
213231
}
214232

233+
vs_output vs_main_multi( vs_input_multi input, vs_instance_input instance_input )
234+
{
235+
vs_output output;
236+
237+
float4x4 wvp = mul( world_matrix, vp_matrix );
238+
239+
output.position = mul( input.position, wvp );
240+
output.world_pos = mul( input.position, world_matrix );
241+
242+
float3x3 world_rot_mat = to_3x3(world_matrix);
243+
world_rot_mat[0] = normalize(world_rot_mat[0]);
244+
world_rot_mat[1] = normalize(world_rot_mat[1]);
245+
world_rot_mat[2] = normalize(world_rot_mat[2]);
246+
247+
float3x3 rotation_matrix = world_rot_mat;
248+
249+
output.normal = mul( input.normal.xyz, rotation_matrix );
250+
output.tangent = mul( input.tangent.xyz, rotation_matrix );
251+
output.bitangent = mul( input.bitangent.xyz, rotation_matrix );
252+
253+
output.texcoord = float4(input.texcoord.x, 1.0f - input.texcoord.y,
254+
input.texcoord.z, 1.0f - input.texcoord.w );
255+
256+
if:(UV_SCALE)
257+
{
258+
output.texcoord *= float4(m_uv_scale.x, m_uv_scale.y, m_uv_scale.x, m_uv_scale.y);
259+
}
260+
261+
output.colour = m_albedo;
262+
263+
return output;
264+
}
265+
215266
float3 transform_ts_normal( float3 t, float3 b, float3 n, float3 ts_normal )
216267
{
217268
float3x3 tbn;
@@ -553,6 +604,18 @@ pmfx:
553604
}
554605
},
555606

607+
"forward_lit_multi":
608+
{
609+
"inherit" : "forward_lit",
610+
"vs" : "vs_main_multi",
611+
612+
"permutations":
613+
{
614+
"SKINNED": [31, [0,1]],
615+
"INSTANCED": [30, [0,1]]
616+
}
617+
},
618+
556619
"forward_lit_uv_scale":
557620
{
558621
"inherit" : "forward_lit",
@@ -583,6 +646,8 @@ pmfx:
583646
"vs": "vs_main_instanced",
584647
"ps": "ps_forward_lit",
585648

649+
"defines": ["INSTANCED"],
650+
586651
"inherit_constants": ["forward_lit"]
587652
},
588653

examples/shader_structs/forward_render.h

+32
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,38 @@ struct forward_lit
66
float3 m_padding;
77
};
88

9+
struct forward_lit_multi
10+
{
11+
float4 m_albedo;
12+
float m_roughness;
13+
float m_reflectivity;
14+
float3 m_padding;
15+
};
16+
17+
struct forward_lit_multi
18+
{
19+
float4 m_albedo;
20+
float m_roughness;
21+
float m_reflectivity;
22+
float3 m_padding;
23+
};
24+
25+
struct forward_lit_multi
26+
{
27+
float4 m_albedo;
28+
float m_roughness;
29+
float m_reflectivity;
30+
float3 m_padding;
31+
};
32+
33+
struct forward_lit_multi
34+
{
35+
float4 m_albedo;
36+
float m_roughness;
37+
float m_reflectivity;
38+
float3 m_padding;
39+
};
40+
941
struct forward_lit_uv_scale
1042
{
1143
float4 m_albedo;

tools/build.py

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
import platform
1010
import build_scripts.util as util
1111

12+
1213
def display_help():
1314
print("run with no arguments for prompted input")
1415
print("commandline arguments")

tools/build_scripts/build_shaders.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -673,6 +673,7 @@ def find_includes(file_text, root):
673673
break
674674
include_name = file_text[start:end]
675675
include_path = os.path.join(root, include_name)
676+
include_path = util.sanitize_file_path(include_path)
676677
if include_path not in added_includes:
677678
include_list.append(include_path)
678679
added_includes.append(include_path)
@@ -718,7 +719,6 @@ def add_files_recursive(filename, root):
718719
shader_source = clean_spaces(shader_source)
719720
sub_root = os.path.dirname(file_path)
720721
include_list = find_includes(shader_source, sub_root)
721-
print(include_list)
722722
for include_file in reversed(include_list):
723723
included_source, sub_includes = add_files_recursive(include_file, sub_root)
724724
shader_source = included_source + "\n" + shader_source

tools/build_scripts/util.py

+6
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,11 @@ def correct_path(path):
2929
return path
3030

3131

32+
def sanitize_file_path(path):
33+
path = path.replace("/", os.sep)
34+
path = path.replace("\\", os.sep)
35+
return path
36+
37+
3238
if __name__ == "__main__":
3339
print("util")

0 commit comments

Comments
 (0)