Re: A Look Behind the Scenes at H2V Programming
Quote:
Originally Posted by
[EJ] Bean
But there were locked parts. Those weren't deleberately locked?
The locked out parts were locked simply because they were extraneous or useless. You can't use a .unit tag as far as I'm concerned.
The CE editing kit came with the ability to create a completely custom map. You could have easily tossed everything aside (save for the ui folder, widget definitions were locked :-3), and built a whole new concept from the ground up.
The Halo 2 Vista Map Editor only has the ability to create a custom Halo 2 map. No more, and much less.
Re: A Look Behind the Scenes at H2V Programming
Re: A Look Behind the Scenes at H2V Programming
Quote:
Originally Posted by
[EJ] Bean
But there were locked parts. Those weren't deleberately locked?
Everything except tag_collection, and the ui_widiget_* tag groups where as-is the same bungie used. The fields were locked because alot of them weren't suppose to be edited because it went against how HALO was suppose to run, or they were fields only suppose to be maintained by a programmer. Those 3 tags mentioned where purposely locked out from public use.
Re: A Look Behind the Scenes at H2V Programming
I just removed the distance and falling damage effects from my globals tag and the map built just fine. Game could see it as well. And yes, I did play the map ;p
Re: A Look Behind the Scenes at H2V Programming
Re: A Look Behind the Scenes at H2V Programming
Quote:
Originally Posted by
Kornman00
I just removed the distance and falling damage effects from my globals tag and the map built just fine. Game could see it as well. And yes, I did play the map ;p
<3 Korn
Re: A Look Behind the Scenes at H2V Programming
Quote:
Originally Posted by
Kornman00
I just removed the distance and falling damage effects from my globals tag and the map built just fine. Game could see it as well. And yes, I did play the map ;p
Masterz? You got some 'splainin to do...
Re: A Look Behind the Scenes at H2V Programming
Quote:
Originally Posted by
flyinrooster
Masterz? You got some 'splainin to do...
More learnin' perhaps?
Re: A Look Behind the Scenes at H2V Programming
Quote:
Originally Posted by
flyinrooster
Masterz? You got some 'splainin to do...
It might be my biped tag that caused the map not to be detected. Also, don't forget I don't use Kornmans Guerilla, so it might be a problem with the editor rather than me. I told kornman I woul investigate once I get my new pc. If I load h2 at high res on this machine, the whole thing goes nuts on me.
Re: A Look Behind the Scenes at H2V Programming
I just finished adding a utility that creates a tag database from a given tag (will walk its dependency graph). Well, it creates two rather. The first database lists the source tag and all of its references (and then the reference's references, then then theirs, etc etc), the second database lists each tag that had erroneous dependencies (either missing from the tag set, skipped by the database construction, or for some reason failed to load), along with what those dependencies were.
When you extract a tag, it will also create a database with all of the extracted tags.
Besides auto-generating tag archives of a specific tag, I had another idea for usage of these tag databases (which I can really beef up with extra info, but currently I'm only going off the same database format bungie uses). Just not sure if I really want to spend the time implementing the idea as its a type of coding I have never even touched on before :/...
It wouldn't be trivial to get this working for Halo 1 stuff either, since my code library includes everything I need to interface with them too, and the systems are designed to work without hardly any game dependent data. I know people would kill for some of the utilities I've got setup for Halo 2, to work with Halo 1. We'll see how things turn out