Okay, so I've just about worked it out...
I'm getting a very strange issue, but I haven't figured out yet what's causing it exactly...
I'm sure it's something fairly simple that I may just be overlooking, but I haven't figured out quite what yet exactly...
So, here's what I have so far...
Goals:
Display any text vertically - Y
Display Japanese text vertically - Y
Set up vertical text to split into columns based on sentence final symbol - Y ?
Sentence swap - Y but seemingly superfluous to this task
Reverse order of any sentences - Y
Reverse order of Japanese sentences - Y
Display sentences correctly in reverse order with periods - Y
Display Japanese text vertically in reverse order with periods - N
I am thinking that perhaps it may have to do with the way I set up the columns to display initially...
I had them set up so that a full string would be parsed and split up into units based on the location of the periods, but when I set up the string to be split and reversed, it split it up into an array of strings, thus eliminating the necessity for further checking in the original vertical display... I think that the original algorithm need merely be altered to allow for the new method of splitting the string to work properly... at this point, it will display the text vertically, but it will only display the last sentence for some reason
Edit: alright, I found out what the bug was (what I had suspected) and fixed the problem... it's working now
