..::STALKER.BY::..
http://stalker.by/forum/

Выводим часы на HUD
http://stalker.by/forum/viewtopic.php?f=534&t=35
Страница 1 из 1

Автор:  Дядя Вася [ 14 авг 2009, 19:21 ]
Заголовок сообщения:  Выводим часы на HUD

Для этого нам понадобятся стандартные файлы:
config/ui/ui_custom_msgs.xml
scripts/bind_stalker.script

Инструкция:

Сложность: Легко

1. Создаём файл ваше_название_скрипта.script в папке gamedata/scripts и пишем в него:

Код
function show_time()
local hud = get_hud()
local cs = hud:GetCustomStatic("hud_show_time")
if cs == nil then
hud:AddCustomStatic("hud_time_static", true)
hud:AddCustomStatic("hud_show_time", true)
cs = hud:GetCustomStatic("hud_show_time")
end

local time_h = level.get_time_hours()
local time_m = level.get_time_minutes()
local msg
if time_m >= 10 then
msg = string.format(" %02d:%02d\n", time_h, time_m)
else
msg = string.format(" %02d:%02d\n", time_h, time_m)
end

if cs ~= nil then cs:wnd():SetText(msg) end
end

2. Далее открываем файл ui_custom_msgs.xml в config/ui/ и пишем туда:

Код
<hud_time_static x="852" y="17" width="156" height="52">
<text complex_mode="0" x="65" y="0" font="letterica16" r="255" g="255" b="255" a="130">Time</text>
<texture>ui_hud_frame_clock</texture>
</hud_time_static>
<hud_show_time x="862" y="38" width="156" height="52">
<text x="0" y="0" font="graffiti19" r="255" g="255" b="255" a="140" align="c"/>
</hud_show_time>

3. Открываем файл bind_stalker.script и пишем после:

Код
function actor_binder:update(delta)
object_binder.update(self, delta)
local time = time_global()
game_stats.update (delta, self.object)

следущее:
ваше_название_скрипта.show_time()

Автор:  xroo [ 20 дек 2009, 16:41 ]
Заголовок сообщения:  Re: Выводим часы на HUD

Это тогда нужно добавить ссылки на справочники и руководства по LUA (Для справки: это язык, используемый движком X-Ray. Разрабы взяли этот язык потому, чтобиблиотеки движка скрипта. так-же как и исходники движка скрипта, доступны бесплатно и их запросто можно заюзать в написанной тобою проге).

Страница 1 из 1 Часовой пояс: UTC + 2 часа [ Летнее время ]
Powered by phpBB® Forum Software © phpBB Group
http://www.phpbb.com/