imgui.OnFrame(function() return showGnewsWindow[0] end, function()
local X, Y = getScreenResolution()
imgui.SetNextWindowSize(imgui.ImVec2(415, 279), imgui.Cond.FirstUseEver)
imgui.SetNextWindowPos(imgui.ImVec2(X / 2 - 207, Y / 2 - 139), imgui.Cond.FirstUseEver)
darkStyle()
imgui.Begin(u8"Добавление новости", showGnewsWindow)
imgui.InputTextWithHint(u8'##gnewsInput1', u8'Введите первую новость', inputGnewsText1, 256)
imgui.InputTextWithHint(u8'##gnewsInput2', u8'Введите вторую новость', inputGnewsText2, 256)
imgui.InputTextWithHint(u8'##gnewsInput3', u8'Введите третью новость', inputGnewsText3, 256)
imgui.Checkbox(u8"Отправка по времени", sendAtTime)
if sendAtTime[0] then
imgui.SliderInt(u8"Время (в минутах)", timeDelay, 1, 59)
end
if sendAtTime[0] then
local currentTime = os.date("*t")
local targetMinute = (currentTime.min + timeDelay[0]) % 60
local targetHour = currentTime.hour
if currentTime.min + timeDelay[0] >= 60 then
targetMinute = (currentTime.min + timeDelay[0]) % 60
targetHour = (currentTime.hour + 1) % 24
end
confirmationMessage = string.format("Новость будет отправлена в %02d:%02d", targetHour, targetMinute)
imgui.Text(u8(confirmationMessage))
end
if imgui.Button(u8"Отправить", imgui.ImVec2(-1, 0)) then
local news1 = u8:decode(ffi.string(inputGnewsText1))
local news2 = u8:decode(ffi.string(inputGnewsText2))
local news3 = u8:decode(ffi.string(inputGnewsText3))
showGnewsWindow[0] = false
-- Проверка на 2 строки (запрещено)
if (news1 ~= '' and news2 ~= '') and news3 == '' then
sampAddChatMessage('Вы не можете отправить 2 строки новости. Только 1 или 3', -2)
return
end
local newsCount = 0
if news1 ~= '' then newsCount = newsCount + 1 end
if news2 ~= '' then newsCount = newsCount + 1 end
if news3 ~= '' then newsCount = newsCount + 1 end
local sendMessage = ""
local sendHour, sendMinute = os.date("*t").hour, os.date("*t").min
if sendAtTime[0] then
sendMinute = (sendMinute + timeDelay[0]) % 60
if os.date("*t").min + timeDelay[0] >= 60 then
sendHour = (sendHour + 1) % 24
end
end
if newsCount == 1 then
sendMessage = sendAtTime[0] and string.format("/l (( в %02d:%02d кину одну ))", sendHour, sendMinute) or "/l (( кину одну ))"
elseif newsCount == 3 then
sendMessage = sendAtTime[0] and string.format("/l (( в %02d:%02d кину три ))", sendHour, sendMinute) or "/l (( кину три ))"
end
lua_thread.create(function()
if sendMessage ~= "" then
sampSendChat(sendMessage, -1)
wait(3000)
end
if sendAtTime[0] then
local currentTime = os.date("*t")
local targetMinute = (currentTime.min + timeDelay[0]) % 60
local targetHour = currentTime.hour
if currentTime.min + timeDelay[0] >= 60 then
targetMinute = (currentTime.min + timeDelay[0]) % 60
targetHour = (currentTime.hour + 1) % 24
end
local targetTime = os.time({year=currentTime.year, month=currentTime.month, day=currentTime.day, hour=targetHour, min=targetMinute, sec=0})
local currentTimeInSecs = os.time(currentTime)
local waitTime = targetTime - currentTimeInSecs
wait(waitTime * 1000)
end
if news1 and news1 ~= '' then
sampAddChatMessage("/gnews MoH | " .. news1)
wait(900)
end
if news2 and news2 ~= '' then
sampAddChatMessage("/gnews MoH | " .. news2)
wait(900)
end
if news3 and news3 ~= '' then
sampAddChatMessage("/gnews MoH | " .. news3)
wait(900)
end
end)
end
if imgui.CollapsingHeader(u8'Отправка по шаблонам') then
if imgui.Button(u8'кнопка1', imgui.ImVec2(400, 0)) then
inputGnewsText1 = ffi.new("char[?]", #(u8'текст) + 1, u8'текст')
inputGnewsText2 = ffi.new("char[?]", #(u8'текст') + 1, u8'текст')
inputGnewsText3 = ffi.new("char[?]", #(u8'текст') + 1, u8'текст')
end
end
imgui.End()
end)