2024-09-22 10:14:34 +00:00
|
|
|
namespace KeepersCompound.Lightmapper;
|
|
|
|
|
|
|
|
class Program
|
|
|
|
{
|
|
|
|
static void Main(string[] args)
|
|
|
|
{
|
2024-09-23 15:57:02 +00:00
|
|
|
Timing.Reset();
|
|
|
|
|
2024-09-26 19:22:01 +00:00
|
|
|
// TODO: Read this from args
|
|
|
|
var installPath = "/stuff/Games/thief/drive_c/GOG Games/TG ND 1.27 (MAPPING)/";
|
|
|
|
var campaignName = "JAYRUDE_Tests";
|
|
|
|
var missionName = "lm_test.cow";
|
|
|
|
|
2024-10-06 09:57:18 +00:00
|
|
|
// campaignName = "JAYRUDE_1MIL_Mages";
|
2024-09-29 09:22:43 +00:00
|
|
|
// campaignName = "TDP20AC_a_burrick_in_a_room";
|
2024-10-06 09:57:18 +00:00
|
|
|
// campaignName = "AtdV";
|
|
|
|
// missionName = "miss20.mis";
|
2024-09-29 09:22:43 +00:00
|
|
|
|
2024-10-28 20:03:20 +00:00
|
|
|
var lightMapper = new LightMapper(installPath, campaignName, missionName);
|
|
|
|
lightMapper.Light(false);
|
|
|
|
lightMapper.Save("kc_lit");
|
2024-09-22 10:14:34 +00:00
|
|
|
|
2024-09-23 15:57:02 +00:00
|
|
|
Timing.LogAll();
|
|
|
|
}
|
2024-09-22 10:14:34 +00:00
|
|
|
}
|