Duzeom_ wrote:If you have a sort of library which reads data from h4c files I could use it to make rmg simultaneously with your code. And as I can see you have a way to display the map. I think you done a tremendous work

Thank you
I do have reusable libraries for reading in .h4c files, but they're not quite complete yet, and there are still some bugs lurking (found one when trying to open Megom Chronicles: MC that I haven't looked into fixing just yet). And the elevation just reads in the bytes and doesn't have an interface yet to manipulate it. Oh, and I haven't figured out what specifies passability. There's no passable specific stuff, so it's probably buried where each adventure / landscape object is encoded and I'll need to figure out some sort of interface for that.
I would prefer if the RMG stuff would be part of the H4MG (specifically I'm thinking about removing the "Map" tab and including those options in a separate frame which is triggered when the user selects File -> New Random Map (or possibly just under the frame that pops up when the user selects File -> New).
If you're alright with that, I'd be happy to discuss the RMG stuff in detail and get the ideas for options, etc. hashed out and send you the code. If you'd prefer to create your own thing, I'll still send you the source code, but I'll still work on getting RMG functionality built into the H4MG.
Duzeom_ wrote:The conditional could be written as separate tree where every node is operation and every leaf is a clause:
AND
/ \
OR c3
/ \
c1 c2
Probably it is the way it is written in h4c file because every operation is binary operation - takes two arguments (from the tree you can create other notation like polish notations etc.).
It is nice to represent a conditional but it is not pragmatic because you probably will want to write something like that:
c1 AND c2 AND c3 AND c4 AND c5 AND ...
So my proposition is that:
You can specify a operand (AND/OR/"("/NOT) and clause alternately:
c1 OP c2 OP c3 OP c4
The issue is that how to define a clause outside of a conditional.
I don't know how the clauses are written in h4 files.
Then such a chain of operands and clause you can represent as a tree, and then write to h4c file.
I don't know if anything helps you from this, but if you could write something how scripts are written in h4c file maybe I could think something more useful.
Polish Notation! That's what it was called! It appears that the logical operators, as well as the mathematical operators, are encoded using Polish Notation, which I believe is stack like in nature (unless I've forgotten), so shouldn't be difficult to parse / encode. Just have to code the algorithm

I'll have to play around with some hex editing again with various AND's, OR's, and EQUALS with various conditions to verify, but I'm pretty sure that's what they're using.
I thought about the tree as well, but then as you said, it would be difficult to write several AND's. Maybe the tree is still okay, and the user could add another AND at the same level as another, and could be prompted to use another logical operator to connect them? For example:
Then, the user selects another AND to add at the top level, and is prompted to choose a connecting logical operator (AND, OR) and the tree is updated to the following:
Code: Select all
-AND (connector)
-AND
-c1
-OR
-c2
-c3
-AND (selected AND)
-c4
-c5
That way might be a little complicated, and we still can't do c1 AND c2 AND c3 AND c4..
Maybe (going back to my last post), we can allow the user to select a script like normal. If they choose an AND, they get
FALSE AND
FALSE, where the user can select either
FALSE and choose either a script, or logical operator, or they can select another script and be prompted for a connector? So if they choose an OR connector, we get the following:
FALSE AND FALSE OR
FALSE
We would need an easy way to add parentheses to correctly group the logic, but that might be a reasonable way to do things. I think the above is kind of what you were saying at the end of your post. Of course, Java doesn't have a nice built-in construct that I know of for this example, haha
What do you think? I like the idea of prompting the user for a connector so that they aren't limited in adding conditional requirements, and it would solve the issue of creating a condition outside of the current logical operators.
How it's represented in the file isn't too important because we can write an interface that knows how to convert between our way of viewing / editing the condition to the way that the editor and game understand, so don't worry about ideas of how to view / edit the conditional requirement not fitting the way the game does things. I think we're getting close to a nice and user-friendly way to view / edit the condition
