Update: 27th July 2022
Changelog 0.1.45:
- Fixed redo bug-- program would try and access a non-value.
- Cut, Copy & Paste have all been implemented.
- Consolidated tiles into one type.
- Various backend stuff.
Current Known Issues:
- Tileset tile selector is clunky.
- Resizing produces an abomination.
- Flipping a tile vertically flips it both vertically and horizontally.
Next steps:
- Redefine resizing methods.
- Rewrite tileset manager.
- Refactor tile drawing method.
Files
BlastEd-0.1.45_amd64.deb 921 kB
Jul 27, 2022
BlastEd-0.1.45_x64.exe 1 MB
Jul 27, 2022
Get BlastEd - Mega Drive/Genesis Graphics Tool
Download NowName your own price
BlastEd - Mega Drive/Genesis Graphics Tool
Orthographic tile mapping software for the SEGA™ Mega Drive / Genesis
Status | Prototype |
Category | Tool |
Author | David Oberlin |
Tags | Mega Drive, Retro, Sega Genesis, Tilemap, Tileset |
More posts
- Xiyoubu - Mega Drive ModnessJan 11, 2023
- Coming soon...Dec 02, 2022
- Much Ado About NullptrNov 14, 2022
- Engineering, The FlowNov 06, 2022
- Getting On With It With David OberlinOct 14, 2022
- Let Me Start Over, AgainSep 27, 2022
- Slow, but steady.Sep 21, 2022
- Of A Sizeable ImprovementSep 12, 2022
- How to chooseSep 06, 2022
- Scope, scales and sizes.Aug 24, 2022
Comments
Log in with itch.io to leave a comment.
Made sure that imagemagick is installed and updated in Linux Mint 21 but I get this error: blasted: error while loading shared libraries: libMagick++-7.Q16HDRI.so.5: cannot open shared object file: No such file or directory. Doesn't sound like a bug but probably a Linux newbie gotcha. Thought I'd bring it up in case there's an easy solution for begginers.
Thanks. Where is the libMagick++*.so installed to on your system and is it it part of your library path (LD_LIBRARY_PATH?) If I recall correctly I compiled IM++ from source and installed it to '/usr/local/lib'
I'll set up a VM at the weekend and see how it goes from a fresh install. Hopefully, that'll iron some of the kinks out.
Looks like /lib/x86_64-linux-gnu. Not sure what LD_LIBRARY_PATH is.
WSL?
LD_LIBRARY_PATH is an environment variable that tells the OS where it can find linked libraries. One solution would be to create a symlink from the current file to where the app expects it to be:
'/usr/local/lib' might not exist so another solution would be to export '/lib/x86_64-linux-gnu' to the environment with:
tbh I don't know what would be best for you in this instance, as I have to confess that I am not familiar with how Ubuntu structures its data. If you try either of those methods and nothing works I will post the next Windows build tomorrow (29/07/22.) It is relatively stable now that I have sorted a few of the spooky bugs (really weird one involving co-ordinates when selecting tiles.)
[# - indicates as root]
[$ - indicates as user]
Hello,
So, on further investigation what worked for me was installing ImageMagick++-7 from source [https://imagemagick.org/script/install-source.php] . If you do not want to go through the trouble I am going to look into creating an AppImage for future releases. However, the Windows build is much, much more stable now. So, that is also an option.
Thanks again,
David