|
|
@ -135,6 +135,103 @@ function editor_skills:remove_rust(skill)
|
|
|
|
--TODO
|
|
|
|
--TODO
|
|
|
|
end
|
|
|
|
end
|
|
|
|
add_editor(editor_skills)
|
|
|
|
add_editor(editor_skills)
|
|
|
|
|
|
|
|
------- counters editor
|
|
|
|
|
|
|
|
editor_counters=defclass(editor_counters,gui.FramedScreen)
|
|
|
|
|
|
|
|
editor_counters.ATTRS={
|
|
|
|
|
|
|
|
frame_style = gui.GREY_LINE_FRAME,
|
|
|
|
|
|
|
|
frame_title = "Counters editor",
|
|
|
|
|
|
|
|
target_unit = DEFAULT_NIL,
|
|
|
|
|
|
|
|
counters1={
|
|
|
|
|
|
|
|
"think_counter",
|
|
|
|
|
|
|
|
"job_counter",
|
|
|
|
|
|
|
|
"swap_counter",
|
|
|
|
|
|
|
|
"winded",
|
|
|
|
|
|
|
|
"stunned",
|
|
|
|
|
|
|
|
"unconscious",
|
|
|
|
|
|
|
|
"suffocation",
|
|
|
|
|
|
|
|
"webbed",
|
|
|
|
|
|
|
|
"soldier_mood_countdown",
|
|
|
|
|
|
|
|
"soldier_mood", --todo enum,
|
|
|
|
|
|
|
|
"pain",
|
|
|
|
|
|
|
|
"nausea",
|
|
|
|
|
|
|
|
"dizziness",
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
counters2={
|
|
|
|
|
|
|
|
"paralysis",
|
|
|
|
|
|
|
|
"numbness",
|
|
|
|
|
|
|
|
"fever",
|
|
|
|
|
|
|
|
"exhaustion",
|
|
|
|
|
|
|
|
"hunger_timer",
|
|
|
|
|
|
|
|
"thirst_timer",
|
|
|
|
|
|
|
|
"sleepiness_timer",
|
|
|
|
|
|
|
|
"stomach_content",
|
|
|
|
|
|
|
|
"stomach_food",
|
|
|
|
|
|
|
|
"vomit_timeout",
|
|
|
|
|
|
|
|
"stored_fat" --TODO what to reset to?
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function editor_counters:fill_counters()
|
|
|
|
|
|
|
|
local ret={}
|
|
|
|
|
|
|
|
local u=self.target_unit
|
|
|
|
|
|
|
|
for i,v in ipairs(self.counters1) do
|
|
|
|
|
|
|
|
table.insert(ret,{f=u.counters:_field(v),name=v})
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
for i,v in ipairs(self.counters2) do
|
|
|
|
|
|
|
|
table.insert(ret,{f=u.counters2:_field(v),name=v})
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
return ret
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
function editor_counters:update_counters()
|
|
|
|
|
|
|
|
for i,v in ipairs(self.counter_list) do
|
|
|
|
|
|
|
|
v.text=string.format("%s:%d",v.name,v.f.value)
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
self.subviews.counters:setChoices(self.counter_list)
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
function editor_counters:set_cur_counter(value,index,choice)
|
|
|
|
|
|
|
|
choice.f.value=value
|
|
|
|
|
|
|
|
self:update_counters()
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
function editor_counters:choose_cur_counter(index,choice)
|
|
|
|
|
|
|
|
dialog.showInputPrompt(choice.name,"Enter new value:",COLOR_WHITE,
|
|
|
|
|
|
|
|
tostring(choice.f.value),function(new_value)
|
|
|
|
|
|
|
|
self:set_cur_counter(new_value,index,choice)
|
|
|
|
|
|
|
|
end)
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
function editor_counters:init( args )
|
|
|
|
|
|
|
|
if self.target_unit==nil then
|
|
|
|
|
|
|
|
qerror("invalid unit")
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
self.counter_list=self:fill_counters()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
self:addviews{
|
|
|
|
|
|
|
|
widgets.FilteredList{
|
|
|
|
|
|
|
|
choices=self.counter_list,
|
|
|
|
|
|
|
|
frame = {t=0, b=1,l=1},
|
|
|
|
|
|
|
|
view_id="counters",
|
|
|
|
|
|
|
|
on_submit=self:callback("choose_cur_counter"),
|
|
|
|
|
|
|
|
on_submit2=self:callback("set_cur_counter",0),--TODO some things need to be set to different defaults
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
widgets.Label{
|
|
|
|
|
|
|
|
frame = { b=0,l=1},
|
|
|
|
|
|
|
|
text ={{text= ": exit editor ",
|
|
|
|
|
|
|
|
key = "LEAVESCREEN",
|
|
|
|
|
|
|
|
on_activate= self:callback("dismiss")
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{text=": reset counter ",
|
|
|
|
|
|
|
|
key = "SEC_SELECT",
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{text=": set counter ",
|
|
|
|
|
|
|
|
key = "SELECT",
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
self:update_counters()
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
add_editor(editor_counters)
|
|
|
|
-------------------------------main window----------------
|
|
|
|
-------------------------------main window----------------
|
|
|
|
unit_editor = defclass(unit_editor, gui.FramedScreen)
|
|
|
|
unit_editor = defclass(unit_editor, gui.FramedScreen)
|
|
|
|
unit_editor.ATTRS={
|
|
|
|
unit_editor.ATTRS={
|
|
|
|