• Register

Xash3D is the powerful independent open-sourced 3D-engine, aimed for high compatibility with GoldSource engine formats (maps, models, textures, sounds, entities etc.), but with the intention to be an advanced platform for modmaking or game development. Technically it has been built from a scratch, using as totally original ideas, as some ideas from other 3D-engines. Xash3D overcomes obsolete GoldSource engine's limits and provides for you a new quality of gaming experience and modmaking capabilities, as extended map, model, texture & sound formats with higher limits, possibility to implement custom renderers with dynamic lighting and other modern features. Xash3D is the easy-to-use base to play existing Half-Life mods & create something new, impossible with GoldSource. Years of development & testing allowed to make from Xash3D a perfect mix of high compatibility with common GoldSource standards & high openness to creative modmaking ideas.

Post feature Report RSS Xash3D Engine v0.85 Features

Full Xash3D Engine Features list. There also many of them in engine, but they are not listed here.

Posted by on

.:Xash3D Engine:.

Custom Gold Source Engine build from scratch

Developers :

Uncle Mike
HLFX.ru forum Members

Me ( Gunship_MK_II ) is NOT a developer, no questions to me.


Since Xash3D is Half-Life compliant engine, then all the above innovations will be given in relation
to
engine GoldSrc, both advantages Xash3D.


Introduction.

Xash3D is a Half-Life-compatible engine, so all its features are showcased with respect to GoldSource to
demonstrate how much better Xash3D is.

Basic limits.

Xash3D limits are not just higher than Half-Life ones, they're also can be tuned in gameinfo.txt file.
MAX_EDICTS is 600 - 4096 (versus 900 in Half-Life).
MAX_TEMPENTS is 300 - 2048 (vs. 500).
MAX_PARTICLES is 1024 - 8192 (vs. 4096).
MAX_BEAMS is 64 - 512 (vs. 64)
Careful limits reduction can save RAM in mods which don't need many edicts.
Also MAX_EDICTS parameter is broadcasted from server during a multiplayer session, it adjusts clients to new conditions automatically.

Other limits.

These limits are hardcoded into the engine and cannot be tuned by user.
MAX_VISIBLE_PACKET is 512 entities (256 in Half-Life).
MAX_MODELS is 2048 unique models (including sprites and bmodels)
MAX_SOUNDS is 2048
MAX_SENTENCES is 2048 (1534 in Half-Life)
MAX_USER_MESSAGES is 191 (128 in WON Half-Life)
MAX_TEXTURES is 4096 (2048 of them can be used for VGUI)
MAX_MESSAGES is 2048 (1024 in Half-Life) (quantity of messages in titles.txt)
Maximum size for indexed textures is 1024х1024 (vs. 512х512 in Half-Life)
Maximum size for true-color textures is 4096x4096.

Limits for BSP-models.

#define MAX_MAP_MODELS 1024 (256 in half-life)
#define MAX_MAP_LEAFS 32767 (8192 in half-life)
Note: other BSP-model limits are set in compiler and don't depend on the engine.

Studiomodel scaling support

Spirit Of Half-Life mod includes an interesting ability to tweak visible size of any studiomodel by the "scale" variable.
However, this ability doesn't affect physical boundaries of the scaled model.
Xash3D addresses this issue. You can toggle the scaling via the "sv_allow_studio_scaling" variable. This variable is saved in config.cfg and also broadcasted to all players during a multiplayer session.

Attachment angle receivement on server side.

As you might know, the GET_ATTACHMENT engine function doesn't return angles for attachment (this capability is absent
from both engine and model compiler). Xash3D partially allows to fix this by returning direction from bone to attachment, which is considered to be forward vector and completely matches the vector you see
in Half-Life Model Viewer (of any version) if you switch to attachment view.
This capability might be useful for implementation of things like headcrab that jumps off the killed zombie,
realistic laser sight position on viewmodel, and others where attachment angles are needed.
This option is turned off by default, you can turn it on by changing "sv_allow_studio_attachment_angles" variable to "1".
It is saved in config.cfg as the previous feature, but it doesn't affect the client.

Realisitic lighting values on server.

Xash3D allows to get more accurate value of current lighting level, because it considers lightstyles
and their current values. In next versions, entity brightness will be calculated for flashlights of every player
(e.g. in multiplayer). The player's lighting is taken directly from renderer and considers all lighting types,
including entity light and dynamic light.

Saveable camera (trigger_camera)

It is known that Half-Life doesn't restore a camera's state on save & load. This issue can interfere with
a proper gaming experience sometimes. It is successfully fixed in Xash3D. Now the state will be kept unchanged
after save & load.

Improved decal save

Half-Life supports decal save only on world surfaces and very rare on doors, elevators and other moving models.
Xash3D saves decals on every brush model.
Decal transition between levels is also maintained (implemented in Half-Life, but doesn't really work).

Entity patch technology support

This technology allows to load entities from external .ent script file.
This script can be produced by the external ripent.exe application or by engine's facilities by typing
the entpatch command. If the command is entered when a map is loaded, a new entity patch will be created.

Various map formats support

Xash3D supports following BSP-map formats: Quake 1, Half-Life, Half-Life Blue Shift. Besides, Quake 1 external
bmodels are supported (medikit and ammo models).
Note: it is recommended to play Quake 1 maps in Deathmatch Classic mod to prevent stuckness of player
because of the difference between hull's sizes of Half-Life and Quake. Besides, DMC supports all entities needed
for complete deatmatch experience on Q1 maps.

Hot resource precaching support

Xash3D allows to precache models "on the fly" that helps to avoid nasty PF_PRECACHE_ERROR. Also Xash3D doesn't crash
if a model or sound wasn't found.

Reliable message transmit from user to client

Xash3D doesn't crash, if user message exceeds the declared size, or if the size wasn't declared at all.
This message will not be sent and user will be notified via console. Also, the SVC_TEMPENTITY message is
completely safe, like user's ones.

Reliable changelevel.

Before switching to a next map Xash3D will analyze its state (without unloading the current map) and decides
whether correct changelevel procedure is possible. In case of any error in a next map the engine will signal about
it in the developer's console, and the changelevel will be aborted. The error message also contains troubleshoot tips
that can make level designer's life easier, because such errors are most difficult to diagnose and fix.
In some cases Xash3D can turn smooth changelevel off on one's own
and turn on the classic changelevel as in Quake. Respective error message will be printed in the console.

Built-in credits

To display credits and exit the game after, run the pfnEndSection command with oem_end_credits argument.
The credits code is placed in menu.dll and can be changed by user at his discretion.

Recursive search of visible entities.

Xash3D supports recursive search of visible entities on server, at their additon to visible-list for client.
You can see implementation's example of such search in SDK in SetupVisibility and AddToFullPack functions (client.cpp).

MOVETYPE_PUSH physics is more stable

Xash3D entities behave more stable on moving platforms and don't shift away on sharp turns.

New MOVETYPE_COMPOUND physics type

It allows to tie one entity to another, taking into account movement and rotation of the former entity. You can see an example in SDK - a crossbow bolt that correctly attaches itself to func_pushable, func_rotating, func_tracktrain and other brush models.


Time freeze

The engine has a capability to stop time using playersonly command (same as in Unreal Engine). This command freezes
both client and server physics excepting player.
It might be useful for taking screenshots or for physics stability testing and other debug operations.

Transparent filesystem

Xash3D ignores the "wad" field in map and doesn't crash if a wad file wasn't found.
GoldSrc could require wads without any check of their real use, so this annoying whim is now gone. Xash3D
can load textures from wad files via pfnLoadFileForMe function on server and COM_LoadFile on client and in the menu.
Just specify texture's name in wad file and the engine will find it. You can also specify needed
wad file in the path, if you want to load the texture specifically from this file. Example: "gfx.wad/conback".

Console autocomplete support

Xash3D has a powerful console autocomplete system that allows not just print command lists,
but also describe all of them during the search. For more comfort you can type
makehelp in the console, and the engine will generate help.txt that contains the list of all commands and variables with
short descriptions. Map, movie, background track, cfg script, save, weapon (give command), sound (play command), game directory names input is also assisted by the autocomplete feature.

No parent directory restriction

Most Quake engines are restricted to the parent directory with specific name, which doesn't matter
when you make mod, but very uncomfortable when you make total game conversion and therefore replace the parent directory. Xash3D doesn't restricted to specific folder, and the parent directory is defined by the launcher. This way you can make your
own game that doesn't depend on Half-Life.

Better console for dedicated server

Dedicated server has the autocomplete feature now, your command history can be saved.

Colored console messages

Xash3D supports color prefixes for console messages first featured in Quake 3.
The prefix system implies input of ^ symbol with a single digit from 0 to 7, where the digit denotes the color.
0 is black, 1 is red, 2 is green, 3 is yellow, 4 is blue, 5 is cyan, 6 is purple, 7 is white.
This color table is fully compatible with Quake 3 and works similarly - string will be colored until,
until carriage return or ^7 control code that cancels coloring. This system also works in the menu
and can be utilized to decorate player's nickname.
Note: VGUI support can be toggled by "vgui_colorstrings" "1" console variable.

Auto-levelshots system

The engine supports individual levelshots system for every level. To activate it, type "allow_levelshots" "1" in the console. Xash3D will make screenshots automatically, but you can replace them with your own, indeed.

Background maps support

Background map is a map to be displayed as a menu background. You could see them in Half-Life 2.
Xash has a simplier background map system - it doesn't depend on unlocked chapters (because original Half-Life has no chapters system) and it chooses the background map from the list.
This list file must be named as chapterbackgrounds.txt and placed in scripts directory (if you don't have such directory, then just make it). Every list's entry is separated by new line.
Example:

с1a1a
c2a1
c4a3
c2a5
c0a0

You can use any playable map as the background, but better don't use maps where player starts in a moving train,
because it won't look good.

Sprite interpolation

Turned on by default. It is supposed to make sprite animation smoother with texture and additive rendermodes.
You can toggle it via "r_sprite_lerping" variable.
Note: to ensure correct performance of this feature, server framerate must be 10 frames per second
(regardless of sprite's FPS in pev->framerate). This parameter is conditioned by think time of
sprite's frame change function in 0.1 sec and constant for most mods.

Post a comment

Your comment will be anonymous unless you join the community. Or sign in with your social account: