From 9a0df4f577b788c304e35135f6c66fb4370b3f74 Mon Sep 17 00:00:00 2001 From: Green Sky Date: Thu, 15 Feb 2024 15:29:01 +0100 Subject: [PATCH] date change --- external/solanaceae_message3 | 2 +- src/chat_gui4.cpp | 29 +++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+), 1 deletion(-) diff --git a/external/solanaceae_message3 b/external/solanaceae_message3 index 486306d..c73f727 160000 --- a/external/solanaceae_message3 +++ b/external/solanaceae_message3 @@ -1 +1 @@ -Subproject commit 486306d854349f0fd7f919c73b8fd8cd1f369ee9 +Subproject commit c73f727adc99b2b73d09b7ebaa696b882ce535b6 diff --git a/src/chat_gui4.cpp b/src/chat_gui4.cpp index 227a75e..3bd2e7a 100644 --- a/src/chat_gui4.cpp +++ b/src/chat_gui4.cpp @@ -324,6 +324,7 @@ float ChatGui4::render(float time_delta) { //tmp_view.use(); //tmp_view.each([&](const Message3 e, Message::Components::ContactFrom& c_from, Message::Components::ContactTo& c_to, Message::Components::Timestamp ts //) { + uint64_t prev_ts {0}; auto tmp_view = msg_reg.view(); for (auto view_it = tmp_view.rbegin(), view_last = tmp_view.rend(); view_it != view_last; view_it++) { const Message3 e = *view_it; @@ -341,6 +342,34 @@ float ChatGui4::render(float time_delta) { // TODO: why? ImGui::TableNextRow(0, TEXT_BASE_HEIGHT); + { // check if date changed + // TODO: find defined ways of casting to time_t + std::time_t prev = prev_ts / 1000; + std::time_t next = ts.ts / 1000; + std::tm prev_tm = *std::localtime(&prev); + std::tm next_tm = *std::localtime(&next); + if ( + prev_tm.tm_yday != next_tm.tm_yday || + prev_tm.tm_year != next_tm.tm_year // making sure + ) { + // name + if (ImGui::TableNextColumn()) { + //ImGui::TextDisabled("---"); + } + // msg + if (ImGui::TableNextColumn()) { + ImGui::TextDisabled("DATE CHANGED from %d.%d.%d to %d.%d.%d", + 1900+prev_tm.tm_year, prev_tm.tm_mon, prev_tm.tm_mday, + 1900+next_tm.tm_year, next_tm.tm_mon, next_tm.tm_mday + ); + } + ImGui::TableNextRow(0, TEXT_BASE_HEIGHT); + } + + prev_ts = ts.ts; + } + + ImGui::PushID(entt::to_integral(e)); // name