Jamiras

Results 187 comments of Jamiras

I see this as two separate ideas. I've already put some thought into structures and this is my latest draft: ``` class player_info(base_address) { function hp() => word(base_address + 0x0000)...

The second thought is the `offset` method. After getting some clarification, the intent of `offset` is to take one accessor expression and generate a second accessor expression based on the...

I'm very much against this. While it may be awkward to create certain triggers using the existing syntax, the solution is to improve the syntax, not add a completely new...

While not automatic, you can reload from disk by pressing F5 while the editor has focus.

I see two issues with this: 1) It assumes the character mapping is ASCII. Most systems that we currently support use per-game character mappings that depend on the tile layout...

Firstly, I want to explicitly differentiate between ASCII string functions and Unicode string functions. While the toolkit currently only supports ASCII strings, RATools could potentially support both. Here are my...

It's only emojis that cause this problem. They actually are two characters in Unicode (known as surrogate pairs). While it would be fairly easy to modify the left/right/delete behavior to...

The optimizer explicitly does not merge adjacent bytes under the assumption that they could have separate notes, and combining the bytes would make future debugging harder. See also https://github.com/Jamiras/RATools/issues/32#issuecomment-464241535 >...

I believe this is just a behavior of the WPF menu system. The submenu item for the recent script has three clickable areas: ![image](https://user-images.githubusercontent.com/32680403/68093285-3ebeab80-fe51-11e9-971a-2fd7d6394817.png) Areas 1 and 3 exhibit the...

I was just responding to your comment: > because it seems to refuse to reload an already-opened file. I read that as already opened _externally_. Perhaps you meant internally? The...