Opinions needed: Representing type data on ModEnc - Printable Version +- Renegade Projects Network Forums (https://forums.renegadeprojects.com) +-- Forum: Modding (https://forums.renegadeprojects.com/forumdisplay.php?fid=3) +--- Forum: C&C Modding Encyclopedia (https://forums.renegadeprojects.com/forumdisplay.php?fid=7) +--- Thread: Opinions needed: Representing type data on ModEnc (/showthread.php?tid=947) |
Opinions needed: Representing type data on ModEnc - DCoder - 03.03.2008 I'm nearing completion of my great datasheet mapping out what properties are loaded from INI for what object types, with what argument types and default values. However, if I post each object type's information on its main page (e.g. on VehicleTypes page for all flags related to VehicleTypes) means, on each flag's individual page, entering some of the Flag template's values by hand creates duplication. I see three possible choices:
Thoughts? Edit: I should point out that some of the tables like for [BuildingTypes] or [General] are going to be long and I don't yet know if including and processing ~1000 template calls is going to make an impact on performance. RE: Opinions needed: Representing type data on ModEnc - Bobingabout - 03.03.2008 ZOMG! you're 768th post! perhaps you should explain what you want to display a little more, then i can make a recomendation? :/ RE: Opinions needed: Representing type data on ModEnc - Marshall - 03.03.2008 Let others do the work. Keeps the info in the right place (on the flags' own pages) and the least work involved overall I think. And, after all, you've already done enough work getting the info in the first place. RE: Opinions needed: Representing type data on ModEnc - DCoder - 03.03.2008 Lol @ 768, nerdy. Marshall, I do suppose that would be the easiest for me And I could always code up stuff later if need be... Bob, I mean this: I want to post a table like this on every ObjectType's main page at ModEnc: Code: Flags loaded from the INI files for this object type: (Note to self, Flag template lacks any info about the "Section name" column. And not all flags load by the simple rule rules=id, art=image...) RE: Opinions needed: Representing type data on ModEnc - gordon-creAtive - 03.03.2008 Marshall Wrote:Let others do the work. Keeps the info in the right place (on the flags' own pages) and the least work involved overall I think. And, after all, you've already done enough work getting the info in the first place. Same opinion. In 4 weeks I'll finish my Abitur and I'll have enough time to help. Edit: The DLL is more important in my opinion... RE: Opinions needed: Representing type data on ModEnc - Renegade - 05.03.2008 1000 template calls on one page wouldn't even be processed. MediaWiki has a pre-expansion template size cut-off. |