Hey there! This post is for anyone that may be a user of TT-Damage-Calculator and is confused or concerned about the changes for V4.0.0, which is very understandable! Throwing in a new language that needs to be compiled to a PYD or SO feels bizarre, especially since I don't really have a central communication channel that I use very often. I hope after reading this post it makes a little more sense why I've made these changes, and how TT-Damage-Calculator may continue to change in the future.
Future Executable Releases
This is positive news for people who primarily use the executable release version of the gag calculator: With the changes I've made to the source code, I'm going to try to compile it more often so that people who do not want to compile Rust code will still be able to use newer versions of the calculator. There's already a release for V4.0.0-dev.1 if you want to check it out!
Fundamnetally, nothing will change with the executable releases of the calculator- you'll still be able to use them like you always have been!
Why Rust?
Ultimately, it's because I like Rust more than Python. I could sing all the praises of Rust that have ever been written (blazingly fast 🚀🚀) but the core reason I have chosen to rewrite most modules in Rust instead of keeping them in Python is purely because I like the language more. Rust is just more fun to program in, and when it compiles it runs perfectly.
Rust has been influencing my programming style more and more as of late, (It is also the language I have mostly been using as of late. This is probably related.) so I figured it would be a good idea for me to just port modules into Rust for better performance and easier maintainability. As I continue to move functions into Rust, my highest hope is that the program becomes less of the spaghetti mess it has been since I first made the program almost a year ago.
How do I compile the Rust libraries?
Prerequisites
The first step to compiling Rust is downloading it. You can download Rust on their website. Click the "Get Started" button and follow the install instructions depending on what operating system you are running. Once Rust is installed, follow the build instructions below for your system.
Windows Build Instructions
On Windows, open your favorite terminal and navigate to the project directory of one of the Rust libraries. For the tt_calc library, this should be TT-Damage-Calculator/mod/tt_calc/
. The folder should have two files: Another folder named src
and a Cargo.toml
file. Inside this folder, run the command cargo build --release
. The library should begin to compile.
Once the library has finished compiling, you should notice that a new folder has been created in the main project folder: target
. Open this folder, and then the release
folder inside. Within the release
folder, you should find a file named [library].dll
. For tt_calc, this would be tt_calc.dll
. Change the file's extension to .pyd
instead of .dll
. The file's name should now be [library].pyd
. Once this is the case, drag and drop your new .pyd
file into TT-Damage-Calculator/mod
. Once this is done with each library, the program should run normally.
Linux Build Instructions
On Linux, open your favorite terminal and navigate to the project directory of one of the Rust libraries. For the tt_calc library, this should be TT-Damage-Calculator/mod/tt_calc/
. The folder should have two files: Another folder named src
and a Cargo.toml
file. Inside this folder, run the command cargo build --release
. The library should begin to compile.
Once the library has finished compiling, you should notice that a new folder has been created in the main project folder: target
. Open this folder, and then the release
folder inside. Within the release
folder, you should find a file named lib[library].so
. For tt_calc, this would be libtt_calc.so
. Change the file's name to [library].so
. For tt_calc, this would be tt_calc.so
. Once this is the case, drag and drop your new .so
file into TT-Damage-Calculator/mod
. Once this is done with each library, the program should run normally.
What else is happening for V4.0.0?
Not much, yet. I don't know how many new features I want to add until I'm happy with what the program already has.
One thing I am looking at doing is making v2 calculations better. I may add a dropdown to the menu bar that lets you select a v2 level to calculate damage against. There would still be the option of a toggle if that is preferred instead. It's possible I would move certain other functions (like defense and the def/lure lock) to the menu bar as well, but this would be more likely to happen in V4.1.0.
What's beyond V4.0.0?
The most important feature that I haven't worked on at all is the ability to change the calculator's keybinds within the program itself rather than doing it through settings.toml. Before any other major features are added, I'd like to finally get around to this.
Beyond that, I'd like to add themes. Maybe not the most important of features, but I like being able to customize software. Being able to customize the appearance of the gag calculator feels like a cute idea that would allow people to add a bit of their personality to the program while they use it.
Final Notes
I'm very glad people have found great utility in my program over the short time it has existed, and hope you continue to do so! Thank you for downloading!