Difference between revisions of "Contribute"

From MSX Game Library

Line 42: Line 42:
 
=== SDCC features ===
 
=== SDCC features ===
  
* '''Create a tool for deleting unused codes and variables'''. Currently, a large number of functions and variables can end up in the final binary file, potentially causing a big waste in terms of size.
+
* '''Create a tool for deleting unused codes and variables'''. Currently, a large number of functions and variables can end up in the final binary file, potentially causing a big waste in terms of size. The SDCC team seems open to creating this feature directly in SDCC, but without some effort on our part, it could be several years before we can actually use it.

Revision as of 20:22, 3 February 2025

This page lists the ways you can contribute to improving MSXgl.

If you're interested, the most convenient way to start is by joining the project's Discord Logo.png Discord server.

How can I contribute?

Knowledge base

  • Create MSXgl based programs and share the source code. If you can film the creation and share the video, that's even better. 😎
    • This is useful for game creators, as they can see how others solve challenges they may also face, and it can serve as a tutorial for people discovering the MSXgl library and tools chain.
    • It's also very helpful for MSXgl creator, as it provides programs that can serve as test cases when there are impactful changes to the library or build tool.
  • Review the documentation and report errors, omissions, or unclear parts. If you can provide improved version, it's even better. 🖤
  • Improve sample programs documentation, in particular through source code comments. To do this, you can use Push requests (PR) via the project's GitHub.
  • Use #MSXgl hash tag on social media to help people found resources about the library.

Assembly code

All assembly codes must be created by people who are familiar with the Z80 assembler and who are able to create code optimized for both speed and size.

Even providing only minimalist assembly code and a usage example is sufficient. The MSXgl creator can easily take care of the C wrapping and integration into the library.

  • Complete the unpacker code. Especially:
    • Create MSX2 version of VRAM unpacker for Pletter and BitBuster modules to access the whole 128 KB of VRAM.
    • Create VRAM unpacker for LZ48 and ZX0 modules (MSX1 & MSX2).
    • Add new unpacker from optimized assembler code.
  • Complete the music replayers. Especially:
    • TriloTracker FM replayer (and update of the new SCC replayer).
    • Realfun 3 replayer.
    • Re-Play replayer (from Grauw).
    • Voice synthesis on the ISR replayer (from ARTRAG).
    • Moonblaster replayer.
    • Lovely Composer replayer.
    • ADX replayer.
    • KSS replayer.
    • MGSP2 replayer.

SDCC features

  • Create a tool for deleting unused codes and variables. Currently, a large number of functions and variables can end up in the final binary file, potentially causing a big waste in terms of size. The SDCC team seems open to creating this feature directly in SDCC, but without some effort on our part, it could be several years before we can actually use it.