Void: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
m (links, grammar and stuff like that.)
(programming definition; cleanup)
Line 1: Line 1:
The Void is the black place outside of [[map_(file_format)|maps]]. it is an infinitely large area of nothingness that surrounds every map.
:''In [[:Category:Programming|programming]], <code>void</code> is used when declaring a function that does not return a value. <code>void*</code> is a pointer to such a function.''


The map can occasionally share it's inside space with the void. this is known as a [[leak]]. loading the map's compiled pointfile plots a course between this void and the closest entity in the map.
'''The void''' is the black space outside [[the world]]. it is an infinitely large area of nothingness that surrounds every map.
When there is a leak, the Void acts strangely, turning all outside faces of the map black.


The Void is not physical. it isn't a [[brush]], [[entity]] or hard-coded into source. it is the lack of code, entities and brushes.
The map can occasionally share it's inside space with the void. This is an error known as a [[leak]]. loading the map's compiled [[pointfile]] plots a course between this void and the closest entity in the map.
 
The Void is not physical. It isn't a [[brush]], [[entity]] or hard-coded into source. It is the lack of code, entities and brushes.


When viewing the Void from inside the map, it picks colours from the screen pixels nearby. Much like in computers, clicking and dragging something makes it repeat several times without physically being there. With the Void, moving your view can make [[textures]] repeat several times on the Void.
When viewing the Void from inside the map, it picks colours from the screen pixels nearby. Much like in computers, clicking and dragging something makes it repeat several times without physically being there. With the Void, moving your view can make [[textures]] repeat several times on the Void.
It also makes the view glow, to the point where a solid colour overwrites the whole page. Usually, it keeps on doing so, until the Void visible is completely white.
In HDR mode it also makes the view glow, to the point where a solid colour overwrites the whole page. Usually, it keeps on doing so, until the Void visible is completely white.


The Void is present in both the [[Goldsource]] and [[Source]] engines. It's appearence in other game engines is not entirely impossible though.
The Void is present in both the [[Goldsource]] and [[Source]] engines. It's appearence in other game engines is not entirely impossible though.
[[Category:Glossary]]

Revision as of 04:44, 20 March 2010

In programming, void is used when declaring a function that does not return a value. void* is a pointer to such a function.

The void is the black space outside the world. it is an infinitely large area of nothingness that surrounds every map.

The map can occasionally share it's inside space with the void. This is an error known as a leak. loading the map's compiled pointfile plots a course between this void and the closest entity in the map.

The Void is not physical. It isn't a brush, entity or hard-coded into source. It is the lack of code, entities and brushes.

When viewing the Void from inside the map, it picks colours from the screen pixels nearby. Much like in computers, clicking and dragging something makes it repeat several times without physically being there. With the Void, moving your view can make textures repeat several times on the Void. In HDR mode it also makes the view glow, to the point where a solid colour overwrites the whole page. Usually, it keeps on doing so, until the Void visible is completely white.

The Void is present in both the Goldsource and Source engines. It's appearence in other game engines is not entirely impossible though.