Page 2 of 3

Re: VN32X - A tool to make visual novels for the 32X

Posted: Thu Sep 14, 2017 2:56 am
by haroldoop
Version 0.7.0 now available!
  • Added an overview/search panel;
  • Allow the user to work with multiple projects;
  • Exporting/importing of projects.
Release page: https://github.com/haroldo-ok/BlocklyVN ... tag/v0.7.0
Portable version: https://github.com/haroldo-ok/BlocklyVN ... -0.7.0.exe

Re: VN32X - A tool to make visual novels for the 32X

Posted: Tue Oct 03, 2017 12:13 am
by haroldoop
Version 0.8.0 now available!
  • Now it is possible to display numbers on the "Say" command. If the string contains something like ${name of the variable}, that part will be replaced with the value of the referenced numeric variable.
Release page: https://github.com/haroldo-ok/BlocklyVN ... tag/v0.8.0
Portable version: https://github.com/haroldo-ok/BlocklyVN ... -0.8.0.exe

Version 0.8.2 now available

Posted: Thu Oct 12, 2017 1:11 pm
by haroldoop
Version 0.8.2 is now available!

No new features; it was just adjusted so that the generated ROM can run on real hardware.
On real hardware, it starts correctly, but the blinking cursor glitches and the images sometimes fail to appear.
Special thanks go to Bullis Marter (Nils) for help in making it work on real hardware.

Release page: https://github.com/haroldo-ok/BlocklyVN ... tag/v0.8.2
Portable version: https://github.com/haroldo-ok/BlocklyVN ... -0.8.2.exe

BlocklyVN32X version 0.8.3 now available

Posted: Sat Oct 14, 2017 11:39 am
by haroldoop
Version 0.8.3 is now available!
All of the memory alignment glitches are now solved. It should run reliably on real hardware.

Release page: https://github.com/haroldo-ok/BlocklyVN ... tag/v0.8.3
Portable version: https://github.com/haroldo-ok/BlocklyVN ... -0.8.3.exe

Re: VN32X - A tool to make visual novels for the 32X

Posted: Tue Oct 17, 2017 2:43 am
by haroldoop
For anybody interested, here's a new video! ;)

Image

Re: VN32X - A tool to make visual novels for the 32X

Posted: Wed Oct 18, 2017 9:33 pm
by Chilly Willy
Yep, that's a visual novel all right! :D

They're still surprisingly popular.

Re: VN32X - A tool to make visual novels for the 32X

Posted: Thu Oct 19, 2017 8:13 am
by Stef
Honestly your tool is very nicely done and it looks quite interesting, too bad the target machine is the 32X, a system than almost nobody is interested for :-/

Re: VN32X - A tool to make visual novels for the 32X

Posted: Thu Oct 19, 2017 6:20 pm
by Muzzy
too bad the target machine is the 32X, a system than almost nobody is interested for :-/
Well, this tool is meant to change this situation :)

Re: VN32X - A tool to make visual novels for the 32X

Posted: Thu Oct 19, 2017 10:09 pm
by haroldoop
Chilly Willy wrote:
Wed Oct 18, 2017 9:33 pm
Yep, that's a visual novel all right! :D

They're still surprisingly popular.
Muzzy wrote:
Thu Oct 19, 2017 6:20 pm
too bad the target machine is the 32X, a system than almost nobody is interested for :-/
Well, this tool is meant to change this situation :)
Yes, I chose this platform both because there aren't many homebrews for it, and because it was incredibly adequate for displaying static images without too many compromises. :lol:

Also, since BlocklyVN32X is mostly comprised of a C code generator, it shouldn't be incredibly hard to adapt it to other retro hardware. ;) It would mostly require writing a C library, plus some proper image conversion tool and an adequate Makefile to coordinate the build process.

BTW, here's version 0.9.1:
  • Now the tool memorizes which was the last open project;
  • Corrected bug with RGB images; now all the images will be automatically converted to paletized ones.
Release page: https://github.com/haroldo-ok/BlocklyVN ... tag/v0.9.1
Portable version: https://github.com/haroldo-ok/BlocklyVN ... -0.9.1.exe

Version 0.10.0 is now available!

Posted: Thu Nov 02, 2017 1:07 am
by haroldoop
Version 0.10.0 is now available:
  • Added command to choose the name that will be displayed in the top left corner of the text window;
  • Resolved the input lag problem on the generated ROM.
Release page: https://github.com/haroldo-ok/BlocklyVN ... ag/v0.10.0
Portable version: https://github.com/haroldo-ok/BlocklyVN ... 0.10.0.exe

Re: VN32X - A tool to make visual novels for the 32X

Posted: Tue Nov 21, 2017 11:56 pm
by haroldoop
Version 0.10.1 is now available:
  • Product name string on the ROM header changed to "Powered by BlocklyVN32X";
  • Generated ROM will be automatically padded to 256KB, 512KB, 1MB, 2MB, 3MB or 4MB (that is, 2, 4, 8, 16, 24 or 32 mbits).
Release page: https://github.com/haroldo-ok/BlocklyVN ... ag/v0.10.1
Portable version: https://github.com/haroldo-ok/BlocklyVN ... 0.10.1.exe

Re: VN32X - A tool to make visual novels for the 32X

Posted: Wed Nov 22, 2017 12:55 am
by Chilly Willy
Cool. Between those changes and the previous fix for input lag, you have a solid platform for certain types of games like visual novels.
8)

Re: VN32X - A tool to make visual novels for the 32X

Posted: Thu Jan 04, 2018 10:54 am
by Muzzy
It is possible to add the custom (2 colors) font from the raster image file?

Re: VN32X - A tool to make visual novels for the 32X

Posted: Thu Jan 04, 2018 9:52 pm
by haroldoop
Muzzy wrote:
Thu Jan 04, 2018 10:54 am
It is possible to add the custom (2 colors) font from the raster image file?
Yes, the raster font file was generated using BMFont v1.14, available on http://www.angelcode.com/products/bmfont/.

This tool allows you to choose any TrueType font and then generate a PNG file containing the font converted into a raster image, plus a FNT file, which is actually a text file saying the position of each character on the PNG.

On compilation, VN32X reads the FNT files and uses its information to chop the PNG file into individual characters, that are then converted to the format that's internally used by the engine.

Re: VN32X - A tool to make visual novels for the 32X

Posted: Fri Jan 05, 2018 10:23 am
by Muzzy
haroldoop wrote:
Thu Jan 04, 2018 9:52 pm
choose any TrueType font and then generate a PNG file containing the font converted into a raster image, plus a FNT file
Well, I don't have TrueType font. I made it pixel by pixel in PhotoShop - so I have raster file. White letters with black borders - Image

______________________________

Also in blocklyvn32x-portable-0.10.0 got some error messages while trying "run" or "compile": popup system error from pngnq.exe - zlib1.dll are not found on the computer, try to reinstal the program.
And Error -1073741515 Compilation failed! in status bar.