Compare commits

..

4 Commits

Author SHA1 Message Date
9ff614095f [nostalgia/gfx/studio/tilesheet] Fix Delete Tile functionality
All checks were successful
Build / build (push) Successful in 1m16s
2025-05-08 02:05:58 -05:00
0168c52183 [keel] Cleanup 2025-05-08 02:05:58 -05:00
253455efc4 [keel] Cleanup 2025-05-08 02:05:40 -05:00
9229713ba2 [nostalgia/studio] Set version to d2025.05.0
All checks were successful
Build / build (push) Successful in 1m22s
2025-05-07 20:27:06 -05:00
10 changed files with 55 additions and 28 deletions

View File

@@ -213,22 +213,22 @@ class BasicString {
[[nodiscard]] [[nodiscard]]
constexpr const char *c_str() const noexcept { constexpr const char *c_str() const noexcept {
return m_buff.data(); return static_cast<const char*>(m_buff.data());
} }
[[nodiscard]] [[nodiscard]]
constexpr explicit operator const char*() const { inline explicit operator const char*() const {
return c_str(); return c_str();
} }
#if __has_include(<string>) #if __has_include(<string>)
[[nodiscard]] [[nodiscard]]
std::string toStdString() const { inline std::string toStdString() const {
return c_str(); return c_str();
} }
[[nodiscard]] [[nodiscard]]
explicit operator std::string() const { inline explicit operator std::string() const {
return c_str(); return c_str();
} }
#endif #endif

View File

@@ -1,16 +1,13 @@
# d2025.05.0 # d2025.05.0
* Add app icon for both window and file * Add app icon for both window and file
* Change application font to Roboto Medium
* Closing application will now confirm with user if any files have unsaved * Closing application will now confirm with user if any files have unsaved
changes. changes.
* UUID duplicates will now be reported when opening a project * UUID duplicates will now be reported when opening a project
* Deleting a directory now closes files in that directory * Deleting a directory now closes files in that directory
* Delete key now initiates deletion of selected directory * Delete key now initiates deletion of selected directory
* Remove ability to re-order tabs. There were bugs associated with that.
* TileSheetEditor: Fix selection clearing in to work when clicking outside * TileSheetEditor: Fix selection clearing in to work when clicking outside
image. image.
* TileSheetEditor: Fix Delete Tile functionality, which was completely broken
* PaletteEditor: Fix color number key range in. Previously, pressing A caused * PaletteEditor: Fix color number key range in. Previously, pressing A caused
the editor to jump to the last color. the editor to jump to the last color.
* PaletteEditor: page rename will now take effect upon pressing enter if the * PaletteEditor: page rename will now take effect upon pressing enter if the

View File

@@ -28,7 +28,7 @@ DeleteTilesCommand::DeleteTilesCommand(
} }
} }
ox::Error DeleteTilesCommand::redo() noexcept { ox::Error gfx::DeleteTilesCommand::redo() noexcept {
auto &s = getSubSheet(m_img, m_idx); auto &s = getSubSheet(m_img, m_idx);
auto &p = s.pixels; auto &p = s.pixels;
auto const srcPos = m_deletePos + m_deleteSz; auto const srcPos = m_deletePos + m_deleteSz;

View File

@@ -9,19 +9,20 @@ namespace nostalgia::gfx {
InsertTilesCommand::InsertTilesCommand( InsertTilesCommand::InsertTilesCommand(
TileSheet &img, TileSheet &img,
TileSheet::SubSheetIdx idx, TileSheet::SubSheetIdx idx,
std::size_t const tileIdx, std::size_t tileIdx,
std::size_t const tileCnt) noexcept: std::size_t tileCnt) noexcept:
m_img{img}, m_img(img),
m_idx{std::move(idx)} { m_idx(std::move(idx)) {
m_insertPos = tileIdx * PixelsPerTile; const unsigned bytesPerTile = m_img.bpp == 4 ? PixelsPerTile / 2 : PixelsPerTile;
m_insertCnt = tileCnt * PixelsPerTile; m_insertPos = tileIdx * bytesPerTile;
m_insertCnt = tileCnt * bytesPerTile;
m_deletedPixels.resize(m_insertCnt); m_deletedPixels.resize(m_insertCnt);
// copy pixels to be erased // copy pixels to be erased
{ {
auto &s = getSubSheet(m_img, m_idx); auto &s = getSubSheet(m_img, m_idx);
auto &p = s.pixels; auto &p = s.pixels;
auto const dst = m_deletedPixels.begin(); auto dst = m_deletedPixels.begin();
auto const src = p.begin() + p.size() - m_insertCnt; auto src = p.begin() + p.size() - m_insertCnt;
ox::copy_n(src, m_insertCnt, dst); ox::copy_n(src, m_insertCnt, dst);
} }
} }
@@ -31,7 +32,7 @@ OX_ALLOW_UNSAFE_BUFFERS_BEGIN
ox::Error InsertTilesCommand::redo() noexcept { ox::Error InsertTilesCommand::redo() noexcept {
auto &s = getSubSheet(m_img, m_idx); auto &s = getSubSheet(m_img, m_idx);
auto &p = s.pixels; auto &p = s.pixels;
auto const dstPos = m_insertPos + m_insertCnt; auto dstPos = m_insertPos + m_insertCnt;
auto const src = &p[m_insertPos]; auto const src = &p[m_insertPos];
if (dstPos < p.size()) { if (dstPos < p.size()) {
auto const dst = &p[dstPos]; auto const dst = &p[dstPos];

View File

@@ -6,7 +6,7 @@
namespace nostalgia::gfx { namespace nostalgia::gfx {
UpdateSubSheetCommand::UpdateSubSheetCommand( gfx::UpdateSubSheetCommand::UpdateSubSheetCommand(
TileSheet &img, TileSheet &img,
TileSheet::SubSheetIdx idx, TileSheet::SubSheetIdx idx,
ox::StringParam name, ox::StringParam name,

View File

@@ -13,10 +13,22 @@ extern ox::String appVersion;
namespace studio { namespace studio {
AboutPopup::AboutPopup(turbine::Context &ctx) noexcept: Popup("About") { AboutPopup::AboutPopup(turbine::Context &ctx) noexcept {
m_text = ox::sfmt("{} - {}", keelCtx(ctx).appName, olympic::appVersion); m_text = ox::sfmt("{} - {}", keelCtx(ctx).appName, olympic::appVersion);
} }
void AboutPopup::open() noexcept {
m_stage = Stage::Opening;
}
void AboutPopup::close() noexcept {
m_stage = Stage::Closed;
}
bool AboutPopup::isOpen() const noexcept {
return m_stage == Stage::Open;
}
void AboutPopup::draw(Context &sctx) noexcept { void AboutPopup::draw(Context &sctx) noexcept {
if (ImGui::IsKeyPressed(ImGuiKey_Escape)) { if (ImGui::IsKeyPressed(ImGuiKey_Escape)) {
close(); close();
@@ -35,7 +47,7 @@ void AboutPopup::draw(Context &sctx) noexcept {
ig::centerNextWindow(sctx.tctx); ig::centerNextWindow(sctx.tctx);
auto open = true; auto open = true;
if (ImGui::BeginPopupModal("About", &open, modalFlags)) { if (ImGui::BeginPopupModal("About", &open, modalFlags)) {
ImGui::Text("%s\n\nBuild date: %s", m_text.c_str(), __DATE__); ImGui::Text("%s", m_text.c_str());
ImGui::NewLine(); ImGui::NewLine();
ImGui::Dummy({148.0f, 0.0f}); ImGui::Dummy({148.0f, 0.0f});
ImGui::SameLine(); ImGui::SameLine();

View File

@@ -13,14 +13,29 @@
namespace studio { namespace studio {
class AboutPopup final: public ig::Popup { class AboutPopup: public studio::Popup {
public:
enum class Stage {
Closed,
Opening,
Open,
};
private: private:
Stage m_stage = Stage::Closed;
ox::String m_text; ox::String m_text;
public: public:
explicit AboutPopup(turbine::Context &ctx) noexcept; explicit AboutPopup(turbine::Context &ctx) noexcept;
void draw(Context &sctx) noexcept override; void open() noexcept override;
void close() noexcept override;
[[nodiscard]]
bool isOpen() const noexcept override;
void draw(studio::Context &sctx) noexcept override;
}; };

View File

@@ -65,7 +65,10 @@ OX_MODEL_END()
StudioUI::StudioUI(turbine::Context &ctx, ox::StringParam projectDataDir) noexcept: StudioUI::StudioUI(turbine::Context &ctx, ox::StringParam projectDataDir) noexcept:
m_sctx{*this, ctx}, m_sctx{*this, ctx},
m_tctx{ctx}, m_tctx{ctx},
m_projectDataDir{std::move(projectDataDir)} { m_projectDataDir{std::move(projectDataDir)},
m_projectExplorer{keelCtx(m_tctx)},
m_newProject{m_projectDataDir},
m_aboutPopup{m_tctx} {
{ {
ImFontConfig fontCfg; ImFontConfig fontCfg;
fontCfg.FontDataOwnedByAtlas = false; fontCfg.FontDataOwnedByAtlas = false;
@@ -252,7 +255,7 @@ void StudioUI::drawMenu() noexcept {
void StudioUI::drawTabBar() noexcept { void StudioUI::drawTabBar() noexcept {
auto const viewport = ImGui::GetContentRegionAvail(); auto const viewport = ImGui::GetContentRegionAvail();
ImGui::BeginChild("TabWindow##MainWindow##Studio", ImVec2(viewport.x, viewport.y)); ImGui::BeginChild("TabWindow##MainWindow##Studio", ImVec2(viewport.x, viewport.y));
constexpr auto tabBarFlags = ImGuiTabBarFlags_TabListPopupButton; constexpr auto tabBarFlags = ImGuiTabBarFlags_Reorderable | ImGuiTabBarFlags_TabListPopupButton;
if (ImGui::BeginTabBar("TabBar##TabWindow##MainWindow##Studio", tabBarFlags)) { if (ImGui::BeginTabBar("TabBar##TabWindow##MainWindow##Studio", tabBarFlags)) {
drawTabs(); drawTabs();
ImGui::EndTabBar(); ImGui::EndTabBar();

View File

@@ -36,7 +36,7 @@ class StudioUI: public ox::SignalHandler {
TaskRunner m_taskRunner; TaskRunner m_taskRunner;
ox::Vector<ox::UPtr<BaseEditor>> m_editors; ox::Vector<ox::UPtr<BaseEditor>> m_editors;
ox::HashMap<ox::String, EditorMaker::Func> m_editorMakers; ox::HashMap<ox::String, EditorMaker::Func> m_editorMakers;
ProjectExplorer m_projectExplorer{keelCtx(m_tctx)}; ProjectExplorer m_projectExplorer;
ox::Vector<ox::String> m_openFiles; ox::Vector<ox::String> m_openFiles;
BaseEditor *m_activeEditorOnLastDraw = nullptr; BaseEditor *m_activeEditorOnLastDraw = nullptr;
BaseEditor *m_activeEditor = nullptr; BaseEditor *m_activeEditor = nullptr;
@@ -45,7 +45,6 @@ class StudioUI: public ox::SignalHandler {
ox::Vector<ox::Pair<ox::String>> m_queuedMoves; ox::Vector<ox::Pair<ox::String>> m_queuedMoves;
ox::Vector<ox::Pair<ox::String>> m_queuedDirMoves; ox::Vector<ox::Pair<ox::String>> m_queuedDirMoves;
NewMenu m_newMenu{keelCtx(m_tctx)}; NewMenu m_newMenu{keelCtx(m_tctx)};
AboutPopup m_aboutPopup{m_tctx};
DeleteConfirmation m_deleteConfirmation; DeleteConfirmation m_deleteConfirmation;
NewDir m_newDirDialog; NewDir m_newDirDialog;
ig::QuestionPopup m_closeFileConfirm{"Close File?", "This file has unsaved changes. Close?"}; ig::QuestionPopup m_closeFileConfirm{"Close File?", "This file has unsaved changes. Close?"};
@@ -56,7 +55,8 @@ class StudioUI: public ox::SignalHandler {
ig::MessagePopup m_messagePopup{"Message", ""}; ig::MessagePopup m_messagePopup{"Message", ""};
MakeCopyPopup m_copyFilePopup; MakeCopyPopup m_copyFilePopup;
RenameFile m_renameFile; RenameFile m_renameFile;
NewProject m_newProject{m_projectDataDir}; NewProject m_newProject;
AboutPopup m_aboutPopup;
ox::Array<Widget*, 10> const m_widgets { ox::Array<Widget*, 10> const m_widgets {
&m_closeFileConfirm, &m_closeFileConfirm,
&m_closeAppConfirm, &m_closeAppConfirm,

View File

@@ -34,4 +34,3 @@ mkdir_p(dmg_dir)
shutil.copytree('dist/darwin-arm64-release/NostalgiaStudio.app', f'{dmg_dir}/NostalgiaStudio.app') shutil.copytree('dist/darwin-arm64-release/NostalgiaStudio.app', f'{dmg_dir}/NostalgiaStudio.app')
os.symlink('/Applications', f'{dmg_dir}/Applications') os.symlink('/Applications', f'{dmg_dir}/Applications')
run(['hdiutil', 'create', '-srcfolder', dmg_dir, dmg]) run(['hdiutil', 'create', '-srcfolder', dmg_dir, dmg])
rm(dmg_dir)