From 81c042a8cd1596b6fb767bcf2bc507a3bceacd41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?kleines=20Filmr=C3=B6llchen?= Date: Sat, 26 Feb 2022 19:47:20 +0100 Subject: [PATCH] Demos/CatDog: Show different messages depending on state There are two new sets of messages for the new application-dependent main states of CatDog. With the current Array-based system, all message collections must have the same number of messages, but that's not a problem. --- Userland/Demos/CatDog/SpeechBubble.cpp | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/Userland/Demos/CatDog/SpeechBubble.cpp b/Userland/Demos/CatDog/SpeechBubble.cpp index eff8b9dca9..b5309ab789 100644 --- a/Userland/Demos/CatDog/SpeechBubble.cpp +++ b/Userland/Demos/CatDog/SpeechBubble.cpp @@ -1,5 +1,6 @@ /* * Copyright (c) 2021, Gunnar Beutner + * Copyright (c) 2022, kleines Filmröllchen * * SPDX-License-Identifier: BSD-2-Clause */ @@ -11,11 +12,21 @@ #include #include -static Array messages = { +static Array default_messages = { "It looks like you're trying to debug\na program. Would you like some help?"sv, "It looks like you're trying to shave\na yak. Would you like some help?"sv, "Well Hello Friend!"sv, }; +static Array pixel_paint_messages = { + "It looks like you're creating art.\nWould you like some help?"sv, + "It looks like you're making a meme\nfor Discord. \U0010CD65"sv, + "It looks like you're using the filter\ngallery. Would you like a suggestion?"sv, +}; +static Array inspector_messages = { + "It looks like you're trying to kill\na program. Would you like some help?"sv, + "It looks like you're profiling a\nprogram. Would you like some help?"sv, + "It looks like you're interested in\nCPU usage. Would you like some help?"sv, +}; void SpeechBubble::paint_event(GUI::PaintEvent&) { @@ -37,7 +48,8 @@ void SpeechBubble::paint_event(GUI::PaintEvent&) painter.draw_line(connector_top_left, Gfx::IntPoint { connector_bottom.x() - 1, connector_bottom.y() }, palette().active_window_border1()); painter.draw_line(connector_top_right, connector_bottom, palette().active_window_border1()); - auto message = messages[get_random() % messages.size()]; + auto& message_list = m_cat_dog->main_state() == CatDog::MainState::Artist ? pixel_paint_messages : (m_cat_dog->main_state() == CatDog::MainState::Inspector ? inspector_messages : default_messages); + auto message = message_list[get_random() % message_list.size()]; painter.draw_text(text_area, message, Gfx::TextAlignment::Center); }