This shows you the differences between two versions of the page.
archive:hudlib [2017/06/12 15:36] – created korshun | archive:hudlib [Unknown date] (current) – removed - external edit (Unknown date) 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | <note warning> | ||
- | |||
- | ====== Hudlib ====== | ||
- | |||
- | Hudlib is an advanced wrapper for [[zdoom> | ||
- | |||
- | Hudlib is based around the concept of **render state**, a render state is a collection of all current rendering settings that are taken into account when drawing a message. | ||
- | |||
- | Only drawing functions actually draw stuff. All other functions only manipulate render state. | ||
- | |||
- | Drawing functions change ZDoom' | ||
- | |||
- | ===== Examples ===== | ||
- | |||
- | ==== Simple 2D drawing ==== | ||
- | |||
- | < | ||
- | HudSetPoint(320.0, | ||
- | HudDrawText(1, | ||
- | </ | ||
- | |||
- | ==== Simple 3D drawing ==== | ||
- | |||
- | < | ||
- | HudSetCameraActor(0); | ||
- | HudSetPoint3D(0.0, | ||
- | HudDrawText(2, | ||
- | </ | ||
- | |||
- | ===== Virtual screen size ===== | ||
- | |||
- | These functions replace '' | ||
- | |||
- | <note important> | ||
- | |||
- | ==== HudSetVirtualSize ==== | ||
- | '' | ||
- | |||
- | Sets the virtual screen size to the given dimensions. The default size is 640x480. This works exactly like '' | ||
- | |||
- | ==== HudUseRealSize ==== | ||
- | '' | ||
- | |||
- | Sets the virtual screen size to match the real size. This allows you to draw messages with 1:1 scale between real and virtual pixels. | ||
- | |||
- | ==== HudUseDefaultSize ==== | ||
- | '' | ||
- | |||
- | Sets the virtual screen size to 640x480. | ||
- | |||
- | ==== HudSetExcludeStatusBar ==== | ||
- | '' | ||
- | |||
- | Controls whether the statusbar area should be included into the virtual screen. This corresponds to the third parameter of '' | ||
- | |||
- | ===== Widescreen support ===== | ||
- | |||
- | ==== Hud boundaries ==== | ||
- | '' | ||
- | |||
- | '' | ||
- | |||
- | '' | ||
- | |||
- | '' | ||
- | |||
- | Return the boundaries of the screen for current virtual screen size, accounting for current **physical** aspect ratio. Equivalent to adding or subtracting a hud border manually. | ||
- | |||
- | **Example** | ||
- | |||
- | < | ||
- | // This message will stick to the left border of the screen (with a gap), even in widescren. | ||
- | HudSetPoint(HudLeft() + 3.0, 240.0); | ||
- | </ | ||
- | |||
- | ==== Hud borders ==== | ||
- | '' | ||
- | |||
- | '' | ||
- | |||
- | Return hud borders for current virtual screen size, accounting for current **physical** aspect ratio. | ||
- | |||
- | ===== 2D positioning ===== | ||
- | |||
- | Before drawing a 2D message, you need to set its position. | ||
- | |||
- | ==== HudSetPoint ==== | ||
- | '' | ||
- | |||
- | Sets the position at which the messages will be drawn. | ||
- | |||
- | ===== Drawing ===== | ||
- | |||
- | ==== HudDrawImage ==== | ||
- | '' | ||
- | |||
- | Draws the specified image at the previously set point using the given HudMessage ID. | ||
- | |||
- | The point of the image that will be positioned (its origin) is determined by the image' | ||
- | |||
- | ==== HudDrawText ==== | ||
- | '' | ||
- | |||
- | Draws the specified text at the previously set point using the given HudMessage ID. | ||
- | |||
- | The point of the text message that will positioned (its origin) is determined by '' | ||
- | |||
- | ===== Scaling ===== | ||
- | |||
- | ==== HudSetScale ==== | ||
- | '' | ||
- | |||
- | Sets the message scale. | ||
- | |||
- | Default: 1.0. | ||
- | ==== HudSetScaleXY ==== | ||
- | '' | ||
- | |||
- | Sets the horizontal and vertical scale. | ||
- | |||
- | ==== HudSetInvScale ==== | ||
- | '' | ||
- | |||
- | Sets the message scale from a 1 / scale value. | ||
- | |||
- | < | ||
- | |||
- | ==== HudSetInvScaleXY ==== | ||
- | '' | ||
- | |||
- | Sets the horizontal and vertical scale from 1 / scale values. | ||
- | |||
- | ===== Fading ===== | ||
- | |||
- | Default message stay time is unlimited. | ||
- | |||
- | ==== HudSetAppearTime ==== | ||
- | '' | ||
- | |||
- | Sets the duration of the fade-in animation of the message in seconds. 0 means that messages will appear instantly. | ||
- | |||
- | Default: 0. | ||
- | |||
- | <note important> | ||
- | |||
- | ==== HudSetStayTime ==== | ||
- | '' | ||
- | |||
- | Sets the amount of time to wait between appearing and disappearing. 0 means that the disappearing animation will start instantly after the appear animation. '' | ||
- | |||
- | Default: '' | ||
- | |||
- | <note important> | ||
- | |||
- | ==== HudSetDisappearTime ==== | ||
- | '' | ||
- | |||
- | Sets the duration of the fade-in animation of the message in seconds. 0 means that messages will disappear instantly. | ||
- | |||
- | Default: 0. | ||
- | |||
- | ===== Translucency ===== | ||
- | |||
- | <note important> | ||
- | |||
- | ==== HudSetBlendStyle ==== | ||
- | '' | ||
- | |||
- | Sets the blending style of the message. Available blending styles: | ||
- | |||
- | * '' | ||
- | * '' | ||
- | |||
- | Default: '' | ||
- | |||
- | ==== HudSetAlpha ==== | ||
- | '' | ||
- | |||
- | Sets the alpha of the message. | ||
- | |||
- | Default: 1.0. | ||
- | |||
- | ===== Text settings ===== | ||
- | |||
- | ==== HudSetFont ==== | ||
- | '' | ||
- | |||
- | Sets the font to use when drawing text. | ||
- | |||
- | Default: SMALLFONT. | ||
- | |||
- | ==== HudSetCenterText ==== | ||
- | '' | ||
- | |||
- | If set to true, centers the text in the box before drawing. Otherwise, justifies it to the left edge of the box. | ||
- | |||
- | ==== HudSetTextColor ==== | ||
- | '' | ||
- | |||
- | Sets the font color to use when drawing text. For the list of available colors see [[zdoom> | ||
- | |||
- | ==== HudSetTextColorString ==== | ||
- | '' | ||
- | |||
- | Sets the font color to use when drawing text. The color must be one the colors defined in the [[zdoom> | ||
- | |||
- | ==== HudSetTextTypeOn ==== | ||
- | '' | ||
- | |||
- | If set to the, the text will use a typeon appear animation instead of a fade-in animation. | ||
- | |||
- | <note important>'' | ||
- | |||
- | ==== HudSetTextOrigin ==== | ||
- | '' | ||
- | |||
- | Set the origin point of the text box. | ||
- | |||
- | Available X origins: | ||
- | |||
- | * '' | ||
- | * '' | ||
- | * '' | ||
- | |||
- | Available Y origins: | ||
- | |||
- | * '' | ||
- | * '' | ||
- | * '' | ||
- | |||
- | ==== HudSetTextOriginX ==== | ||
- | '' | ||
- | |||
- | Sets the X origin point of the text box only. | ||
- | |||
- | ==== HudSetTextOriginY ==== | ||
- | '' | ||
- | |||
- | Sets the Y origin point of the text box only. | ||
- | |||
- | ==== HudSetLogMessage ==== | ||
- | '' | ||
- | |||
- | If set to true, the message will be logged to console. | ||
- | |||
- | ==== HudSetWordWrap ==== | ||
- | '' | ||
- | |||
- | If set to true, the message will be word-wrapped if it touches the right boundary of the screen. | ||
- | |||
- | < | ||
- | |||
- | ===== Visibility ===== | ||
- | |||
- | ==== HudSetShowToEveryone ==== | ||
- | '' | ||
- | |||
- | If set to true, the message will be shown to everyone, and not just to the activator. This setting toggles between '' | ||
- | |||
- | ==== HudSetLayer ==== | ||
- | '' | ||
- | |||
- | Sets the layer of the message. | ||
- | |||
- | FIXME This setting is present only for completeness. Please insert a description of what it actually does. FIXME | ||
- | |||
- | ==== HudSetShowIn3DView ==== | ||
- | '' | ||
- | |||
- | Hudlib equivalent of the HUDMSG_NOTWITH3DVIEW flag. | ||
- | |||
- | FIXME This setting is present only for completeness. Please insert a description of what it actually does. FIXME | ||
- | |||
- | ==== HudSetShowOnFullAutomap ==== | ||
- | '' | ||
- | |||
- | Hudlib equivalent of the HUDMSG_NOTWITHFULLMAP flag. | ||
- | |||
- | FIXME This setting is present only for completeness. Please insert a description of what it actually does. FIXME | ||
- | |||
- | ==== HudSetShowOnOverlayAutomap ==== | ||
- | '' | ||
- | |||
- | Hudlib equivalent of the HUDMSG_NOTWITHOVERLAYMAP flag. | ||
- | |||
- | FIXME This setting is present only for completeness. Please insert a description of what it actually does. FIXME | ||
- | |||
- | ===== 3D Camera position ===== | ||
- | |||
- | ==== HudSetCameraPosition ==== | ||
- | '' | ||
- | |||
- | Sets the position of the camera from which 3D messages will be viewed. | ||
- | |||
- | Default: (0, 0, 0). | ||
- | |||
- | ==== HudSetCameraAngles ==== | ||
- | '' | ||
- | |||
- | Sets the direction of the camera through which 3D messages will be viewed. The direction is specified as a pair of angles. | ||
- | |||
- | Default: (0, 0). | ||
- | |||
- | <note important> | ||
- | |||
- | <note tip>If you want to do '' | ||
- | |||
- | ==== HudSetCameraActor ==== | ||
- | '' | ||
- | |||
- | Reads the actor' | ||
- | |||
- | ==== HudSetCameraActorAdvanced ==== | ||
- | '' | ||
- | |||
- | Same as '' | ||
- | * '' | ||
- | * '' | ||
- | * '' | ||
- | * '' | ||
- | |||
- | ===== 3D Message position ===== | ||
- | |||
- | ==== HudSetPoint3D ==== | ||
- | '' | ||
- | |||
- | Sets the point at which the 3D message will be drawn. The next message drawn will be 3D. | ||
- | |||
- | Default: none. | ||
- | |||
- | ==== HudSet2DOffset ==== | ||
- | '' | ||
- | |||
- | Sets the 2D offset of the 3D message relative to the projected point. | ||
- | |||
- | Default: (0, 0). | ||
- | |||
- | ===== 3D Projection ===== | ||
- | |||
- | ==== HudSetProjectionMode ==== | ||
- | '' | ||
- | |||
- | Sets the method to use when projecting 3D points to the screen. | ||
- | |||
- | Available modes are: | ||
- | * '' | ||
- | * '' | ||
- | * '' | ||
- | |||
- | ===== 3D Distance ===== | ||
- | |||
- | ==== HudSetAutoDistanceScale ==== | ||
- | '' | ||
- | |||
- | If enabled, the message will be automatically scaled based on distance to the camera plane. | ||
- | |||
- | Default: true. | ||
- | |||
- | ==== HudGetDistance ==== | ||
- | '' | ||
- | |||
- | Returns the distance from the 3D point to the camera plane. Note that this is **not** the the distance between the camera and the point. | ||
- | |||
- | Returns negative distances if the point is behind the camera. | ||
- | |||
- | **Example** | ||
- | |||
- | < | ||
- | if (HudGetDistance() > 256.0) | ||
- | HudDrawText(" | ||
- | else | ||
- | HudDrawText(" | ||
- | </ | ||
- | |||
- | ===== State management ===== | ||
- | |||
- | You can save and retrieve hudlib states using these functions. The maximum amount of saved states is configured through ''# | ||
- | |||
- | ==== HudResetState ==== | ||
- | '' | ||
- | |||
- | Resets hudlib render state to default. | ||
- | |||
- | < | ||
- | |||
- | ==== HudPushState ==== | ||
- | '' | ||
- | |||
- | Saves the current render state to a stack. | ||
- | |||
- | <note important> | ||
- | ==== HudPopState ==== | ||
- | '' | ||
- | |||
- | Restores the previous saved render state from the stack. | ||
- | |||
- | ==== HudClearStateStack ==== | ||
- | '' | ||
- | |||
- | Deletes all saved render states. | ||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||