Guy Fawkes the Priest, meet Guy Fawkes the Balm Seller, meet Guy Fawkes the Confessor…
Time to further simplify life by removing the one-name-at-a-time NPC updates. It’s all well and good for bears and boars and orcs, but each human NPC
has a unique name, which may even be autogenerated. On instantiating an NPC, we can just look in the Resources folder for a Material of the same name.
If not found, we’ll look for “anonymous”.
voidUpdate(){if(Time.time>nextDBUpdate){print("Time to read from the DB! "+Time.time);nextDBUpdate=Time.time+dbUpdateDelta;activeGameRounds.Clear();cellsContainingNpcs.Clear();UpdateAllNpcs();UpdateNpcCohab();}}voidUpdateAllNpcs(){List<NPC>npcs=DragonsSpine.DAL.DBNPC.GetAllNpcs();print("I found "+npcs.Count+" NPCs");foreach(NPCnpcinnpcs){if(npc.lastActiveRound>maxGameRound)maxGameRound=npc.lastActiveRound;}foreach(NPCnpcinnpcs){if(!activeGameRounds.Contains(npc.lastActiveRound))activeGameRounds.Add(npc.lastActiveRound);Vector3cell=newVector3(npc.X,npc.Y,npc.Z);npcLocations[npc.worldNpcID]=cell;if(!cellsContainingNpcs.ContainsKey(cell))cellsContainingNpcs[cell]=newList<int>();cellsContainingNpcs[cell].Add(npc.worldNpcID);Vector3position=newVector3((-1f)*npc.X,(-1f)*npc.Y,(0.1f*npc.Z)+0.2f);if(!npcScripts.ContainsKey(npc.worldNpcID)){NpcScripttempNpc=(NpcScript)Instantiate(npcScript);tempNpc.npcId=npc.worldNpcID;tempNpc.name=npc.Name;npcScripts[npc.worldNpcID]=tempNpc;}npcScripts[npc.worldNpcID].newPosition=position;npcScripts[npc.worldNpcID].lastActiveRound=npc.lastActiveRound;SetMaterial(npcScripts[npc.worldNpcID]);}}voidSetMaterial(NpcScriptnpc){Rendererrend=npc.GetComponent<Renderer>();MaterialliveNpc=Resources.Load("Materials/"+npc.name,typeof(Material))asMaterial;if(liveNpc==null){print("Couldn't find live Material for NPC name: "+npc.name);liveNpc=Resources.Load("Materials/anonymous",typeof(Material))asMaterial;}MaterialexNpc=Resources.Load("Materials/ex"+npc.name,typeof(Material))asMaterial;if(exNpc==null){print("Couldn't find dead Material for NPC name: "+npc.name);exNpc=Resources.Load("Materials/exanonymous",typeof(Material))asMaterial;}if(npc.lastActiveRound>=maxGameRound-1)// one round leeway in case we catch the DB in mid-updaterend.material=liveNpc;elserend.material=exNpc;}
Not really the way it should be done, since we’re scouring the Materials every time we update an NPC. It does let you add materials while the thing is running, though:
We’ll make the NpcScript responsible for its live and dead materials, and switching between them as appropriate (although NpcManager still kicks things off):
publicvoidUpdateMaterial(intcurrRound){if(lastActiveRound>=currRound-1)// one round leeway in case we catch the DB in mid-updaterenderer.material=liveMaterial;elserenderer.material=deadMaterial;}
if(!npcScripts.ContainsKey(npc.worldNpcID)){NpcScripttempNpc=(NpcScript)Instantiate(npcScript);tempNpc.npcId=npc.worldNpcID;tempNpc.name=npc.Name;SetMaterials(tempNpc);npcScripts[npc.worldNpcID]=tempNpc;}npcScripts[npc.worldNpcID].newPosition=position;npcScripts[npc.worldNpcID].lastActiveRound=npc.lastActiveRound;npcScripts[npc.worldNpcID].UpdateMaterial(maxGameRound);}}voidSetMaterials(NpcScriptnpc){npc.liveMaterial=Resources.Load("Materials/"+npc.name,typeof(Material))asMaterial;if(npc.liveMaterial==null){print("Couldn't find live Material for NPC name: "+npc.name);npc.liveMaterial=Resources.Load("Materials/anonymous",typeof(Material))asMaterial;}npc.deadMaterial=Resources.Load("Materials/ex"+npc.name,typeof(Material))asMaterial;if(npc.deadMaterial==null){print("Couldn't find dead Material for NPC name: "+npc.name);npc.deadMaterial=Resources.Load("Materials/exanonymous",typeof(Material))asMaterial;}}
That’s a bit faster and cleaner, even if we lose some of the dynamism (for now). Using the debug, I spent a few hours adding a lot of the materials we’re missing.
Though I still don’t have a solution for the generated NPC names.
Sven, the priest, and the ghost confessor sorted, at least.