mirror of
https://github.com/Ralim/IronOS.git
synced 2025-07-23 20:30:38 +02:00
* Starting GUI render refactor to be more immediate mode Update TemperatureAdjust.cpp . Cleanup Soldering Sleep SolderingProfiles Soldering Rework Rough pass GUI Temp Adjust Cleanup old OperatingMode Debug Menu * Update TemperatureAdjust.cpp * Roughing some transition work * Fixup! Hook in the init starter helper * Better home screen button handler * FIXUP! Fix typo's . * Update SettingsMenu.cpp * More settings rework * More settings rendering * Fixup * Transitions Update SolderingProfile.cpp Hook in transistions * Update TemperatureAdjust.cpp * Update push.yml * Add auto-repeat to settings menu * Miniware: Use IT for I2C writes * Update USBPDDebug_HUSB238.cpp * Force write screen on side animation cancel . * Refactor moving down the settings list * Update settingsGUI.cpp * Update I2C_Wrapper.cpp * Update OLED.cpp * Rework button handling * Fix PD debug at boot * Fixup not showing right menu options * silence some warnings * Style cleanup * Fkit use bit-bang I2C for Miniware * Update GUIRendering.md * Fixup transition on enter soldering mode * Save Settings * Fixes for some animations not running Dont bail on animations if keypress is still held * Fixup settings acceleration * OLED Up animation * Link up/down on debug meny * Make all accelerometers I2C bus aware Update accelerometers_common.h * Make I2C mag optional * Miniware -> Only Bit-Bang I2C * Fixup for scrollbar FIXUP! Debug menu returns to home screen FIXUP! Up oled animation Fix temp exit * Settings menu -> Both buttons return a menu layer * Merge fixup * Update BMA223.cpp * Re-Enable OLED sleep * Save Setting on temp adjust exit * WiP on startup mode * Some autostart working * Add hibernation mode & more autostart fixes * If cant CJC; go to startup * Hibernate in sleep * Cleanup scroll indicator * FIXUP! Ensure startup warnings are linked in * FIXUP! Ensure we render out temp change before timing out * Ensure 100ms delay between CJC samples * Fix not re-calculating menu length on entering menu * Implement NegotiationinProgress for USB-PD * Mask heating until PD finishes negotiation * Fixup staying in hibernate correctly * Warning timeout * Show reset settings warning * Correctly compensate help text start time * Update GUIThread.cpp * Update USBPD.cpp * . * Fixup sleep time * Update printSleepCountdown.cpp * replacing countdown with big plus while in boost mode * bringing back the + 1 since it was missing when not in boost mode * Bail on USB-PD check after 3 seconds incase of DC source * Fix hibernate * Update PIDThread.cpp * did center plus symbol (boost mode) * Big refactor to not make settings increment handler handle the "is last item" return * Fixup boot logo * Fix flashing * Fixup recalculate the menu length on long hold * Fixup missing menu entries * Fix junk left on screen after user confirmation * Re-order button handler to use custom, then default order to allow setting associated setting * Attach setting for settings using custom handler * Fix swap +/- keys * Fix boost temp * Implement last menu option for Language selector * Wait for init before CJC runs * Check last setting via increment value * Update BSP.cpp * removed = from >= Otherwise incrementing would stop and the scroll bar would already flash at the second to last value. * (Hacky) Fix for Settings reset --------- Co-authored-by: discip <53649486+discip@users.noreply.github.com>
62 lines
1.8 KiB
C++
62 lines
1.8 KiB
C++
#include "ScrollMessage.hpp"
|
|
|
|
#include "OLED.hpp"
|
|
#include "configuration.h"
|
|
|
|
/**
|
|
* Counts the number of chars in the string excluding the null terminator.
|
|
* This is a custom version of `strlen` which takes into account our custom
|
|
* double-byte char encoding.
|
|
* @param str The input string.
|
|
* @return The length of the string.
|
|
*/
|
|
static uint16_t str_display_len(const char *const str) {
|
|
const uint8_t *next = reinterpret_cast<const uint8_t *>(str);
|
|
uint16_t count = 0;
|
|
while (next[0]) {
|
|
if (next[0] <= 0xF0) {
|
|
count++;
|
|
next++;
|
|
} else {
|
|
if (!next[1]) {
|
|
break;
|
|
}
|
|
count++;
|
|
next += 2;
|
|
}
|
|
}
|
|
return count;
|
|
}
|
|
|
|
/**
|
|
* Calculate the width in pixels of the message string, in the large
|
|
* font and taking into account multi-byte chars.
|
|
*
|
|
* @param message The null-terminated message string.
|
|
*/
|
|
uint16_t messageWidth(const char *message) { return FONT_12_WIDTH * str_display_len(message); }
|
|
|
|
void drawScrollingText(const char *message, TickType_t currentTickOffset) {
|
|
OLED::clearScreen();
|
|
int16_t messageOffset;
|
|
uint16_t msgWidth = messageWidth(message);
|
|
if (msgWidth > OLED_WIDTH) {
|
|
messageOffset = (currentTickOffset / (getSettingValue(SettingsOptions::DescriptionScrollSpeed) == 1 ? TICKS_100MS / 10 : (TICKS_100MS / 5)));
|
|
messageOffset %= msgWidth + OLED_WIDTH; // Roll around at the end
|
|
if (messageOffset < OLED_WIDTH) {
|
|
// Snap the message to the left edge.
|
|
messageOffset = OLED_WIDTH;
|
|
} else if (messageOffset > msgWidth) {
|
|
// Snap the message to the right edge.
|
|
messageOffset = msgWidth;
|
|
}
|
|
} else {
|
|
// Centre the message without scrolling.
|
|
messageOffset = (OLED_WIDTH - msgWidth) / 2 + msgWidth;
|
|
}
|
|
|
|
//^ Rolling offset based on time
|
|
OLED::setCursor((OLED_WIDTH - messageOffset), 0);
|
|
OLED::print(message, FontStyle::LARGE);
|
|
}
|