Community Project: H2V to H2X Conversions
Community Project: H2V to H2X Conversions
Community Project: H2V to H2X Conversions
Ok lets get everyone involved with this. I have included a h2v to h2x conversion that is pretty much complete the only problem is the map wont load in game(Black Screen Of Death).
So if everyone can look through the bsp of this map for stuff like:
- Forgotten tag references, lone ids, or string ids
- Reflexives that are pointing to the wrong place
- Or a part of the meta that has a different structure than the halo 2 xbox version.
I'm 100% we can get this map to load we just need to find the probably small mistake I made when converting.
Here are some pictures of the bsp in entity:
Credits for the bsp go to: SteamBoat6 and TheCreator512
Original Map: http://h2v.halomaps.org/index.cfm?pg=3&fid=2143
Ok lets get everyone involved with this. I have included a h2v to h2x conversion that is pretty much complete the only problem is the map wont load in game(Black Screen Of Death).
So if everyone can look through the bsp of this map for stuff like:
- Forgotten tag references, lone ids, or string ids
- Reflexives that are pointing to the wrong place
- Or a part of the meta that has a different structure than the halo 2 xbox version.
I'm 100% we can get this map to load we just need to find the probably small mistake I made when converting.
Here are some pictures of the bsp in entity:
Credits for the bsp go to: SteamBoat6 and TheCreator512
Original Map: http://h2v.halomaps.org/index.cfm?pg=3&fid=2143
- Attachments
-
- dunes(apply to lockout).rar
- (2.18 MiB) Downloaded 98 times
Last edited by shade45 on Fri Jun 29, 2007 10:32 am, edited 1 time in total.
- plushiefire
- Posts: 618
- Joined: Thu Nov 23, 2006 12:10 pm
- Location: Canada
broken idents appear when you use Entity UE v1.6 no matter what map you use. It's the plugins that it came with. Also, I moved all of the player spawns up onto the level and I moved the weapon spawns as well. I then tried using the default.xbe (with the updates), then the 1.0 AU, and then the 1.5 AU. All gave me the same effect. I never loaded to black screen, nor did I freeze, but here is a video of what happens. - Click
- patchesreusch
- Posts: 541
- Joined: Wed Nov 29, 2006 3:49 pm
- Location: jail because i got caught I-doseing
- Contact:
since you have the sbsp in a h2x map couldnt you save the bsp and build it into another map like an entity sp to mp or h2c/h2g spto mp? im try entity now
How to get a girl: put a potato in the front of your pants.
How not to get a girl: put a potato in the back of your pants.
http://youtube.com/watch?v=JPONTneuaF4
How not to get a girl: put a potato in the back of your pants.
http://youtube.com/watch?v=JPONTneuaF4
- plushiefire
- Posts: 618
- Joined: Thu Nov 23, 2006 12:10 pm
- Location: Canada
EDIT:Chunk cloner wont open, broken idents apear then an entity error message.plushiefire wrote:Go to sbsp and try to clone cuhnks, broken idents appear...
Come check out Team 3volved.
Haha yeah I guess so I'll make a list when I get home from work.Anthony wrote:you shoulda made a list of everything you did... its kinda dumb to say heres a map broken map and now try and fix it!!!!
at least if we had a list of what you did we can think of stuff that you may have forgot or did wrong.
tmacca123drxthirst2 wrote:Shade, do you have AIM? I would like to ask you some questions.
- latinomodder
- Posts: 1040
- Joined: Tue Sep 20, 2005 5:51 pm
- Location: Costa Rica
are you doing drugs and not explaining it right?latinomodder wrote:2. Everyone knows that bsps are either double sidded or single? well what if these are single sided or any other weird combo.
or is this something new that I haven't heard about because I would love to include it in my app
Linkdizzle
- newbymodder
- Posts: 1475
- Joined: Fri Nov 24, 2006 4:43 pm
- Location: San Angelo, Tejas
i think he is talking about the mesh of the map? how on some maps its just for the top so if you were to flip the map to play on there would be no collision but other maps have mesh on both sides so you can have collision ect or at least thats what i think he is trying to say
Join Halo 2.5, Can't stop never stop modding halo 2 http://www.halo25.co.nr/
haha thats culling, Halo 2's Culling is ClockwiseTain7ed wrote:latino modder is talkin about normals, and how some maps only have normals that face inward where the player is and others have normals that face both towards and away from where the player spawns....For all those who dont know what a normal is its just the direction a rendered face shows up on
Ex:
Code: Select all
dev.RenderState.CullMode = Cull.Clockwise;
but anyways thanks for clearing that up I did'nt understand what he was talking about. and no you dont need to worry about that because its automatically done by DirectX
Er.. not quite Tain7ed and Ant.
Every thing in directx is made up of polygons (triangles), that are in turn each made up of 3 vertices (x, y, z points).
A normal is a perpendicular vector pointing away from the front side of a face (the polygon).
A polygon will only have a normal on its front side, a normal on the other side would be quite pointless because of culling. A normal is used for lighting calculations. Meaning that if you were to view the side with a normal with lighting enabled, it would appear correctly.. whilst the side without a normal would just appear completely black.
You might wonder what the point is in normals, but there is a good reason for them, performance for one, and more advanced things such as normal mapping can be done also.
Culling is the term used for basically not displaying polygons that can't be seen. But how would that be calculated? By the order in which the verts appear of course!
By default, directx only culls counter-clockwise faces, which is referred to as 'back-face culling'. As you can see from the picture, the polygon's verts are currently being drawn clockwise. But now imagine that we are viewing it through a camera, now move the camera so we are viewing the other side; suddenly the verts will be being drawn counter-clockwise relevant to our camera, so we see nothing for the triangle will be culled! Remember the culling is always relevant to our viewing frustum. Another example of this would be if you fell through the map and looked up; you should be looking at the otherside of the floor, but actually you'll just see right through because Bungie never meant for you to get there and so didn't waste polygons on making that side.
Obviously with many many pieces of large complicated geometry being used; culling can be quite a hit on performance because of all the math being done.. but this far out-ways the performance hit by drawing all the geometry instead, and so you would be stupid not to cull.
The Blam engine uses clockwise culling, as well as right-handed Cartesian coordinates, which is normally seen in OpenGL.
Every thing in directx is made up of polygons (triangles), that are in turn each made up of 3 vertices (x, y, z points).
A normal is a perpendicular vector pointing away from the front side of a face (the polygon).
A polygon will only have a normal on its front side, a normal on the other side would be quite pointless because of culling. A normal is used for lighting calculations. Meaning that if you were to view the side with a normal with lighting enabled, it would appear correctly.. whilst the side without a normal would just appear completely black.
You might wonder what the point is in normals, but there is a good reason for them, performance for one, and more advanced things such as normal mapping can be done also.
Culling is the term used for basically not displaying polygons that can't be seen. But how would that be calculated? By the order in which the verts appear of course!
By default, directx only culls counter-clockwise faces, which is referred to as 'back-face culling'. As you can see from the picture, the polygon's verts are currently being drawn clockwise. But now imagine that we are viewing it through a camera, now move the camera so we are viewing the other side; suddenly the verts will be being drawn counter-clockwise relevant to our camera, so we see nothing for the triangle will be culled! Remember the culling is always relevant to our viewing frustum. Another example of this would be if you fell through the map and looked up; you should be looking at the otherside of the floor, but actually you'll just see right through because Bungie never meant for you to get there and so didn't waste polygons on making that side.
Obviously with many many pieces of large complicated geometry being used; culling can be quite a hit on performance because of all the math being done.. but this far out-ways the performance hit by drawing all the geometry instead, and so you would be stupid not to cull.
The Blam engine uses clockwise culling, as well as right-handed Cartesian coordinates, which is normally seen in OpenGL.
Halo 2 Prophet - Skin with ease with the simple 3D point and click interface.
Halo 3 Research Thread - Contribute to the research into Halo 3.
Halo 3 Research Thread - Contribute to the research into Halo 3.