Galactica/content/ui/outfitter.rhai

198 lines
3.4 KiB
Plaintext

fn init(state) {
conf_set_starfield(true);
conf_set_phys(false);
add_sprite(
"se_box",
"ui::outfitterbox",
Rect(
-1.0, -1.0, 202.345, 133.409,
Anchor::SouthWest,
Anchor::SouthWest
)
);
add_textbox(
"exit_text", 10.0, 10.0,
Rect(
122.71, 48.0, 51.0, 12.0,
Anchor::NorthWest,
Anchor::SouthWest
),
Color(1.0, 1.0, 1.0, 1.0)
);
textbox_font_serif("exit_text");
textbox_align_center("exit_text");
textbox_set_text("exit_text", "Exit");
add_sprite(
"exit_button",
"ui::button",
Rect(
113.35, 52.0, 69.8, 18.924,
Anchor::NorthWest,
Anchor::SouthWest
)
);
add_sprite(
"ship_bg",
"ui::outfitter-ship-bg",
Rect(
16.0, -16.0, 190.0, 353.0,
Anchor::NorthWest,
Anchor::NorthWest
)
);
add_sprite(
"ship_thumb",
"icon::gypsum",
Rect(
111.0, -95.45, 90.0, 90.0,
Anchor::Center,
Anchor::NorthWest
)
);
add_textbox(
"ship_name", 10.0, 10.0,
Rect(
111.0, -167.27, 145.0, 10.0,
Anchor::Center,
Anchor::NorthWest
),
Color(1.0, 1.0, 1.0, 1.0)
);
textbox_font_serif("ship_name");
textbox_align_center("ship_name");
textbox_set_text("ship_name", "Hyperion");
add_textbox(
"ship_type", 7.0, 8.5,
Rect(
111.0, -178.0, 145.0, 8.5,
Anchor::Center,
Anchor::NorthWest
),
Color(0.7, 0.7, 0.7, 1.0)
);
textbox_font_sans("ship_type");
textbox_align_center("ship_type");
if state.player_ship().is_some() {
textbox_set_text("ship_type", state.player_ship().name());
}
add_textbox(
"ship_stats", 7.0, 8.5,
Rect(
38.526, -192.332, 144.948, 154.5,
Anchor::NorthWest,
Anchor::NorthWest,
),
Color(1.0, 1.0, 1.0, 1.0)
);
textbox_font_mono("ship_stats");
textbox_set_text("ship_stats", "Earth");
add_sprite(
"outfit_bg",
"ui::outfitter-outfit-bg",
Rect(
-16.0, -16.0, 300.0, 480.0,
Anchor::NorthEast,
Anchor::NorthEast
)
);
add_sprite(
"outfit_thumb",
"icon::engine",
Rect(
-166.0, -109.0, 90.0, 90.0,
Anchor::Center,
Anchor::NorthEast
)
);
add_textbox(
"outfit_name", 16.0, 16.0,
Rect(
-312.0, -20.0, 200.0, 16.0,
Anchor::NorthWest,
Anchor::NorthEast,
),
Color(1.0, 1.0, 1.0, 1.0)
);
textbox_font_serif("outfit_name");
textbox_weight_bold("outfit_name");
textbox_set_text("outfit_name", "Earth");
add_textbox(
"outfit_desc", 7.0, 8.5,
Rect(
-166.0, -219.0, 260.0, 78.0,
Anchor::Center,
Anchor::NorthEast,
),
Color(1.0, 1.0, 1.0, 1.0)
);
textbox_font_serif("outfit_desc");
textbox_set_text("outfit_desc", "Earth");
add_textbox(
"outfit_stats", 7.0, 8.5,
Rect(
-295.0, -271.0, 164.0, 216.0,
Anchor::NorthWest,
Anchor::NorthEast,
),
Color(1.0, 1.0, 1.0, 1.0)
);
textbox_font_mono("outfit_stats");
textbox_set_text("outfit_stats", "Earth");
}
fn event(state, event) {
if type_of(event) == "MouseHoverEvent" {
let element = event.element();
if element == "exit_button" {
if event.is_enter() {
sprite_take_edge("exit_button", "on:top", 0.1);
} else {
sprite_take_edge("exit_button", "off:top", 0.1);
}
}
return;
}
if type_of(event) == "MouseClickEvent" {
if !event.is_down() {
return;
}
let element = event.element();
if element == "exit_button" {
go_to_scene("landed");
return;
}
return;
}
if type_of(event) == "PlayerShipStateEvent" {
if !state.player_ship().is_landed() {
go_to_scene("flying");
return;
}
return;
}
}