<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On 8 March 2018 at 03:34, Ralph Versteegen <span dir="ltr"><<a href="mailto:teeemcee@gmail.com" target="_blank">teeemcee@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote"><span class="">On 7 March 2018 at 18:32, James Paige <span dir="ltr"><<a href="mailto:Bob@hamsterrepublic.com" target="_blank">Bob@hamsterrepublic.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><span class="m_2289900566834372685gmail-"><br><br>On Tuesday, March 6, 2018, Ralph Versteegen <<a href="mailto:teeemcee@gmail.com" target="_blank">teeemcee@gmail.com</a>> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div><div><div><div><div><div>"Must-merge" is such an emotional phrasing!<br><br></div></div></div></div></div></div></div></blockquote><div><br></div></span><div>Hehe!</div><span class="m_2289900566834372685gmail-"><div><br></div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div><div><div><div><div>The problems with the spriteset editor are:<br></div></div>-you can't import or export spritesets. This is definitely a blocker. A number of people are not using nightlies for this reason.<br></div>-the cursor keys are super wonky, so I need to check in my plankmenu arrow keys rewrite<br>-it's extremely slow due to the way that default palettes are stored and
 loaded. Eg. POWERXE.RPG takes about 8 seconds to bring up the 
walkabouts menu for me. I have a branch where I replace defpal#.bin with
 rgfx<br></div>-frame names like "hurt", "attack B" etc are missing. I have a branch for that too<br></div><div>-the obsolete .pt# and .mxs lumps aren't deleted yet<br></div><div><br></div>I also have a large collection of unrelated bug reports, but we could work on those after feature freeze (I should get back work on migration the bug trackers too... was having problems installing perl modules)<br><div><div><br></div><div>But my actual argument against going to feature freeze now is that it would be sad to delay such game-changing features such as animations by three months, when they're almost ready and we've already paid most the instability cost. For example, I can make walktall obsolete just by adding a simple prompt asking what size spriteset you want to add. (Abitrary enemy and hero sprite sizes are enabled by a branch where I've done heaps of battle code cleanup and partially converted battles to slices)<br></div><div>I know this is the same reason we always ended up delaying releases by months or even years, but in this case I think it's more like days!<br></div></div></div></blockquote><div><br></div></span><div>Okay! I have rescheduled my alert for a secret time in the near future.</div></blockquote><div><br></div></span><div>I can't figure out whether it's more or less stressing to have a secret deadline!<br></div><span class=""><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div><br></div><div>Is there anything I can do to help you with all your pending stuff?</div></blockquote><br></span></div><div class="gmail_quote">Unfortunately it's hard for me to suggest anything right now; I really need to merge in what I have to avoid conflicts, and to provide APIs and examples to work with.<br><br></div><div class="gmail_quote">Oh, I just remembered: there will be a problem with Test Game once you can add more frames to an existing sprite set: updating the sprite cache won't work. The solution is to always use Sprite slices in-game instead of Frame ptrs. I've converted battle sprites to slices, but I believe there were still one or two places not using slices which need converting.<br></div></div></div></blockquote><div><br></div><div>Oh, an alternative to converting to slices is to convert to SpriteSet ptrs instead, and using the Frame ptr of the SpriteSet as an indirection layer. That pointer can be updated as needed. I'll likely eventually end up doing that Frame->SpriteSet conversion everywhere in Custom for the same reason: to allow entering the spriteset editor while in other editors, and being able to correctly update sprites that are already loaded.<br><br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote"></div><br>If you wanted to, a completely separate project would be to remove the 16-color limit. At this point I'm assuming that we aren't going to delay release for it. We have almost no code left that still assumes a Palette16 has 16 colours. 95% of the remaining work is to replace the .pal lump and to update the sprite editor UI. I haven't started on either. (As part of finishing off PNG support, I'm already updating the import/export code which explicitly asks for 4-bit bmps)<br><br><div class="gmail_quote"><div><br></div><div>We could also start working through all these bugs. Here are some I've written down:<br><br></div><div>-This morning Feenicks wrote: "oh yeah, tmc: I still seem to be getting the bug where pressing the 'new' button or pressing the end key to get to the end of the list sends me to attack 23"<br></div><div>I haven't looked into it or asked what he meant. If he said so earlier, I forgot.<br><br></div><div>-Foxley pointed out it's no longer possible to go from the enemy attacks menu to the attacks editor. (Confirmed)<br><br></div><div>-Foxley reported a Self-target On-death attack causes the on-death attack to trigger again, looping forever (Confirmed)<br><br></div><div>-Foxley reported that F9 Reimport Scripts while in any part of the tileset editor wipes the tileset. (Confirmed) He did some really thorough testing showing that whether it permanently wipes it, or it just appears black until you reenter the menu, depends on which submenu of the tileset editor you're in. But unfortunately I didn't copy it down. Should be an easy fix.<br></div><div><br>-make sure James documents "current vehicle id" and "current vehicle npc" and adds them to whatsnew</div><div><br>-"Reset stored target" happens after "Store Target", so if you set both bits on the same attack, Store Target does nothing. But being able to set both bits would be very useful, makes Store Target work the way you would expect it does. It's not enough to swap the order the bits take effect, because inflict() is called multiple times if there are multiple targets. Instead Reset stored target needs to happen before the first inflict() call<br></div><div><br></div><div>Oh, also that bit for capping negative stats Surlaw asked for; I feel bad not getting around to that.<br></div><span class=""><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div><br></div><div>---</div><div>James</div><div class="m_2289900566834372685gmail-HOEnZb"><div class="m_2289900566834372685gmail-h5"><div><br></div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div><div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On 7 March 2018 at 17:11, James Paige <span dir="ltr"><<a href="mailto:Bob@hamsterrepublic.com" target="_blank">Bob@hamsterrepublic.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">My calendar alerts went off again. How are you feeling about starting Fufluns stabilization, tmc? What must-merge branches do you still have for it?<div><br></div><div>---</div><div>James</div>
<br>______________________________<wbr>_________________<br>
Ohrrpgce mailing list<br>
<a href="mailto:ohrrpgce@lists.motherhamster.org" target="_blank">ohrrpgce@lists.motherhamster.o<wbr>rg</a><br>
<a href="http://lists.motherhamster.org/listinfo.cgi/ohrrpgce-motherhamster.org" rel="noreferrer" target="_blank">http://lists.motherhamster.org<wbr>/listinfo.cgi/ohrrpgce-motherh<wbr>amster.org</a><br>
<br></blockquote></div><br></div></div>
</blockquote>
</div></div><br>______________________________<wbr>_________________<br>
Ohrrpgce mailing list<br>
<a href="mailto:ohrrpgce@lists.motherhamster.org" target="_blank">ohrrpgce@lists.motherhamster.o<wbr>rg</a><br>
<a href="http://lists.motherhamster.org/listinfo.cgi/ohrrpgce-motherhamster.org" rel="noreferrer" target="_blank">http://lists.motherhamster.org<wbr>/listinfo.cgi/ohrrpgce-motherh<wbr>amster.org</a><br>
<br></blockquote></span></div><br></div></div>
</blockquote></div><br></div></div>