Advertisement

Breaking the frame

Started by September 05, 2014 04:14 PM
3 comments, last by Norman Barrows 10 years, 5 months ago

In lay terms can someone explain what is going on. I have experienced it in Elder scroll series. One moment your character is outside a beautiful graphic of a building and the next you are in side a of the walls and it is all lines.

Sometimes you get out and sometimes not. The good side is you see a chest and figure out there is actually a graphical box that is being used as a tool. In my instance it is the inventory of what a vendor character has for sell.

I have seen it on purpose as when my son found an online cheat that requires one to hop over a wall where it was not supposed to be possible. He circumnavigates the normal fast travel or front door feature and gone around the games programing sequence. It allows him to walk behind the city where the character drops down through the frame and walk under the structures.

along the same line the terrain is supposed to cover parts of the under lying contents that are graphic objects but used as tools for the game supposed to be hidden however enough is either close enough or barely exposed to the landscape above that an option to access the contents for a vendor 100 yards away pops up out of the ground.

In an imperfect world it is a glitch something you hope to avoid but is also brief insight to the nature of game programming.

Thanks

Ross

Always thinking outside of the box, wondering what's inside.

Could be one of several things (I'm not familiar with the coding of the Elder scroll series). It could be a glitch in the collision engine; could be a latent "free-look" or debug mode - the former is more likely.

Please don't PM me with questions. Post them in the forums for everyone's benefit, and I can embarrass myself publicly.

You don't forget how to play when you grow old; you grow old when you forget how to play.

Advertisement

Usually this is because you ended up on the wrong side of the world geometry.

Models/Textures are drawn with textures on one side (The other side is never supposed to be seen and therefore doesn't need a texture).

What happens is you view the geometry from the side without a texture, therefore it become "Invisible".

Sometimes you get stuck because the collision detection doesn't allow passage in either direction.

Sometimes you don't get stuck because the collision detection only worries about collisions from the textured side.

The outline of the world geometry is still visible sometimes because you are viewing them at an angle where at least some of your sight line hits the textured side.


Models/Textures are drawn with textures on one side (The other side is never supposed to be seen and therefore doesn't need a texture).

thanks, makes perfect sense, I feel like I went from Tim Allens cavemen who doesn't get it Huhhh to one that does Ohhhh I would imagine the conundrums created with programing and graphic engines get pretty odd.

Always thinking outside of the box, wondering what's inside.


One moment your character is outside a beautiful graphic of a building and the next you are in side a of the walls and it is all lines.
Sometimes you get out and sometimes not.

there are some "holes" in the collision detection in skyrim, which allow you to move "behind" the scene. think of a movie studio lot. a street with buildings. but they're facades, just store fronts. as soon as you go around the back, you see they are fake. its especially common in combat, while jumping, and when there are many characters in close proximity. combat and characters occasionally adjust your location, and apparently don't always do all the required collision checks. same idea while jumping. its the old problem of trying to anticipate every eventuality. you cant walk into a skooma tank, but you can jump into it and get stuck. a robust generic physics system can avoid this. Oblivion was worse. their implementation of havoc physic engine was flawed, resulting in dropped heavy armor occasionally "sinking" though the floor and disappearing, as though you had droppedit on quicksand, instead of a solid surface. in both games, your character will occasionally slip though a crack and start to fall, but the games usually reset you back into the level after a few seconds.


The good side is you see a chest and figure out there is actually a graphical box that is being used as a tool. In my instance it is the inventory of what a vendor character has for sell.

that's done by design. each vendor has a hidden container to track what they have for sale.


I have seen it on purpose as when my son found an online cheat that requires one to hop over a wall where it was not supposed to be possible. He circumnavigates the normal fast travel or front door feature and gone around the games programing sequence. It allows him to walk behind the city where the character drops down through the frame and walk under the structures.

"flying" cheats, as these are called, are specifically not recommended, as they put the game into a state where its behavior is undefined - and therefore may be unstable. this is especially true when you go into an area that usually requires a load screen. you're actually going outside the playable area of the current "doom level" or area. only the buildings and such at the edge of an adjoining level or area are loaded with the current area. No flying is a conscious design choice made by the developers. two main reasons i can think of: 1. much of the game would be too easy with flight or even levitation. think of all that stupid stuff you could skip if you could just fly over it. yet another Falmer! ooh and ahh! 2. loadscreens vs streaming / LOD for loading areas from the hard drive. streaming would most likely be required for flying. altogether a more complex game engine would be required, something more like a flight sim engine with good LOD, rather than a more simplistic shooter engine, which is the technology currently used.

Norm Barrows

Rockland Software Productions

"Building PC games since 1989"

rocklandsoftware.net

PLAY CAVEMAN NOW!

http://rocklandsoftware.net/beta.php

This topic is closed to new replies.

Advertisement