-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathProgram.cs
180 lines (161 loc) · 4.67 KB
/
Program.cs
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
using StereoKit;
using StereoKit.Framework;
using StereoKitApp;
using System.Threading.Tasks;
public class Program
{
public SKSettings Settings => new SKSettings {
appName = "Light Baking",
mode = AppMode.XR,
origin = OriginMode.Floor
};
StaticScene scene;
BakedScene bakedScene;
GridBuilder builder;
bool mapDirty = true;
const int mapWidth = 10;
const int mapHeight = 10;
byte[] map = new byte[mapWidth*mapHeight] {
1,1,1,1,1,1,1,1,1,1,
1,0,0,0,0,0,0,0,0,1,
1,0,0,0,0,0,0,0,0,1,
1,0,1,1,0,0,1,1,0,1,
1,0,1,0,0,0,0,1,0,1,
1,0,1,0,0,0,0,1,0,1,
1,0,1,0,0,1,0,1,0,1,
1,0,1,1,0,1,0,1,0,1,
1,0,0,1,0,0,0,0,0,1,
1,1,0,1,1,1,1,1,0,1 };
Color[] mapLights = new Color[mapWidth * mapHeight];
float samples = 64;
public static void Main(string[] args)
{
Program app = new Program();
SK.Initialize(app.Settings);
app.Init();
SK.Run(app.Step);
}
public void Init()
{
builder = new GridBuilder(1,
new TileDefinition(TileType.Full, 0, Model.FromFile("TileEmpty.gltf")),
new TileDefinition(TileType.Full, 1, Model.FromFile("TileFull.glb")),
new TileDefinition(TileType.Corner, 1, 0, Model.FromFile("TileCorner.gltf")),
new TileDefinition(TileType.Edge, 1, 0, Model.FromFile("TileEdge.gltf")),
new TileDefinition(TileType.InvCorner, 1, 0, Model.FromFile("TileInvCorner.gltf")),
new TileDefinition(TileType.Kitty, 1, 0, Model.FromFile("TileKitty.gltf")) );
scene = builder.MakeGrid(map,mapWidth,mapHeight);
scene.AddModel(Model.FromFile("Lampshade.glb"), Matrix.TRS(new Vec3(-0.75f, 1.5f, -3.52f), new Vec3(-45,0,0), 0.5f));
bakedScene = new BakedScene();
bakedScene.SetSky(Renderer.SkyLight);
mapLights[4 + 2 * mapWidth] = new Color(1, 1, 1);
//bakedScene.AddLight(new Vec3(-0.75f, 1.5f, -3.52f), Color.HSV((float)r.NextDouble(), 0.4f+(float)r.NextDouble() * 0.5f, 1).ToLinear(), 200f);
}
public void Step()
{
bakedScene.Draw();
bakedScene.DrawDebug();
WindowMapEditor();
if (mapDirty && !bakedScene.Baking)
{
mapDirty = false;
RebuildMap(true);
}
}
Pose mapWindowPose = new Pose(0.2f, 1.5f, -0.5f, Quat.LookDir(0, 0, 1));
int mapEditMode = 0;
float mapColorHue = 0;
void WindowMapEditor()
{
UI.WindowBegin("Map Editor", ref mapWindowPose);
if (UI.Radio("Map", mapEditMode == 0)) mapEditMode = 0;
UI.SameLine();
if (UI.Radio("Lighting", mapEditMode == 1)) mapEditMode = 1;
if (mapEditMode == 1)
{
UI.SameLine();
UI.Label("Hue");
UI.SameLine();
UI.PushTint(Color.HSV(mapColorHue, 0.2f, 1));
UI.HSlider("Hue", ref mapColorHue, 0, 1, 0);
UI.PopTint();
}
if (bakedScene.Baking)
{
UI.Label("Baking...");
UI.SameLine();
UI.ProgressBar(bakedScene.BakingProgress);
} else {
if (UI.Button("Bake"))
RebuildMap(false);
UI.SameLine();
UI.Label("Samples"); UI.SameLine(); UI.HSlider("Samples", ref samples, 0, 512, 1);
}
UI.HSeparator();
Vec2 btnSize = V.XY(0.03f, 0.03f);
if (mapEditMode == 0)
{
for (int y = 0; y < mapHeight; y++)
{
for (int x = 0; x < mapWidth; x++)
{
int i = x + y * mapWidth;
UI.PushId(i);
bool solid = map[i] == 1;
if (UI.Toggle(solid ? "X" : " ", ref solid, null, Sprite.ToggleOff, UIBtnLayout.CenterNoText, btnSize))
{
map[i] = solid ? (byte)1 : (byte)0;
mapDirty = true;
}
UI.PopId();
UI.SameLine();
}
UI.NextLine();
}
}
else if (mapEditMode == 1)
{
for (int y = 0; y < mapHeight; y++)
{
for (int x = 0; x < mapWidth; x++)
{
int i = x + y * mapWidth;
UI.PushId(i + 1000);
bool present = mapLights[i].a > 0;
UI.PushTint(present ? mapLights[i] : Color.White);
if (UI.Toggle(present ? "*" : " ", ref present, null, Sprite.RadioOn, UIBtnLayout.CenterNoText, btnSize))
{
mapLights[i] = Color.HSV(mapColorHue, lightSat, lightVal).ToLinear();
mapLights[i].a = present ? 1 : 0;
mapDirty = true;
}
UI.PopTint();
UI.PopId();
UI.SameLine();
}
UI.NextLine();
}
}
UI.WindowEnd();
}
const float lightSat = 0.3f;
const float lightVal = 1;
const float lightintensity = 0.9f;
void RebuildMap(bool fast)
{
bakedScene.ClearLights();
for (int y = 0; y < mapHeight; y++)
{
for (int x = 0; x < mapWidth; x++)
{
int i = x + y * mapWidth;
if (mapLights[i].a > 0)
bakedScene.AddPointLight(builder.TilePos(x, y, mapWidth, mapHeight) + new Vec3(-0.5f,1.5f,-0.5f), mapLights[i], lightintensity);
}
}
bakedScene.AddDirectionalLight(new Vec3(-1, -1.1f, 0.4f), Color.HSV(0.1f, 0.3f, 1.0f).ToLinear(), .5f);
scene = builder.MakeGrid(map, mapWidth, mapHeight);
if (!bakedScene.Baking)
Task.Run(() => bakedScene.Bake(scene, fast?0:(int)samples, !fast));
}
}