Meeting 2015 01 16

From PCGen Wiki
Jump to: navigation, search

PCGen Meeting for January 16th, 2015

Attendance

  • Tom P. [Arch]
  • Paul G. [PR]
  • Douglas L. [Data 2nd]
  • Andrew W.
  • David B.
  • "Canda"

Summary

Raw Log

  • <Tom[Arch_SB]> Probably just informal this evening, we are missing at least James and Andrew
  • <[OGL]Nylanfs> Mythic Adventures, AP#61 Shards of Sin, Blood of the Moon, Ultimate Campaign, Animal Archive, & Varisa: Birthplace of Legend have all been released into review or alpha state
  • <Tom[Arch_SB]> nice
  • <Distant_Scholar> Very nice.
  • <[OGL]Nylanfs> Iron Gods Player's guide, AP #67 The Snows of Summer, Taldor, And Adventurer's Armory are being reviewed for licensing now
  • <[OGL]Nylanfs> I should have those done over the weekend.
  • <[OGL]Nylanfs> Heya DRB
  • <PapaDRB> Hi Paul!
  • <Tom[Arch_SB]> wow busy
  • <Canda> I'll be trying to pay attention as I work.
  • <[OGL]Nylanfs> I'm personally opening to have a chance to play in the new sandbox with the formula and FACT/FACTSET sometime in the next week or so. :)
  • <[OGL]Nylanfs> hoping
  • <Tom[Arch_SB]> cool
  • <Tom[Arch_SB]> I discovered one gap in that a few minutes ago, so there will probably be one change this weekend
  • <Tom[Arch_SB]> Right now there is no ability to make a FACT or FACTSET "GLOBAL", it has to be tied to a specific object.
  • <Tom[Arch_SB]> If we want to replace things like SORTKEY or the SOURCE* stuff then we need a GLOBAL location
  • <[OGL]Nylanfs> Is that really a problem?
  • <Tom[Arch_SB]> problem, no
  • <[OGL]Nylanfs> Hmm, I see what you mean
  • <Tom[Arch_SB]> convenient yes
  • <Tom[Arch_SB]> So anyway, that's one of my projects for this weekend
  • <Tom[Arch_SB]> Anything else Paul?
  • <[OGL]Nylanfs> Well I won't be going to GenCon this year
  • <Tom[Arch_SB]> bummer
  • <[OGL]Nylanfs> Wife is dragging me to a Cat Convention. :)
  • <Tom[Arch_SB]> [blinks] okay...
  • <[OGL]Nylanfs> But things are on track for possible having a booth next year for PCGen. :)
  • <Tom[Arch_SB]> interesting
  • <[OGL]Nylanfs> There's been a fairly steady stream of donations to the funds
  • <[OGL]Nylanfs> Other than that I don't think I have anything else
  • <Tom[Arch_SB]> ok
  • <Tom[Arch_SB]> I'll paste in Andrew's content report
  • <Tom[Arch_SB]> Content Report - New sources worked on and expected out soon: Technology Guide Taldor Blood of the Moon Iron Gods Player's Guide
  • <Tom[Arch_SB]> Working hand-in-hand with Tom and the FACT/FACTSET items. Proposals are being pushed forward to institute some more progress (if you're a data chimp, please chime in with a vote or questions)
  • <Tom[Arch_SB]> OS - (Stefan) - Stefan can fill in progress here Data - (Douglas) - Doug can fill in any other progress here Docs - (Eric) - Haven't seen any activity from Eric...
  • <Tom[Arch_SB]> -end Andrew's content-
  • <Tom[Arch_SB]> ...any questions since we have some folks on that may be able to answer?
  • <Nuance> @Tom when you said "Okay, I think there is a way for this to work as requested", did you mean we can put whatever numbers we like in SIZENUM: and expect the system to work it out?
  • <Nuance> I'm asking because you then start to talk about other objects
  • <Tom[Arch_SB]> Hey there
  • <Nuance> Hiya
  • <Tom[Arch_SB]> Yes, for example, the input values would be SIZENUM: 10, 20, 40, 50, whatever
  • <Tom[Arch_SB]> and the code would produce SIZEORDER 0, 1, 2,3 , 4 etc
  • <Nuance> Nice
  • <Tom[Arch_SB]> or whatever the constants are called
  • <Tom[Arch_SB]> I actually found I don't need to change how Equipment thinks, just need to deal with the side effects on the other items ...
  • <Nuance> I take it these are then totally internal and not referenced in the LST
  • <Tom[Arch_SB]> that means UI work though, and I'll need some guidance from James or Connor on that (already posted to _dev)
  • <Tom[Arch_SB]> Yes, that calculation is internal, LST only worries about what was shown as SIZENUM in the example ablve
  • <Tom[Arch_SB]> *above
  • <Tom[Arch_SB]> One other comment though:
  • <Tom[Arch_SB]> The data right now can do things with variables and produce sizes... so we will need to think about how that works going forward if they can be dynamic
  • <Tom[Arch_SB]> since an insertion of a size would change the # for MEdium perhaps...
  • <Tom[Arch_SB]> so the formula really shouldn't be "3+something"
  • <Tom[Arch_SB]> it should be "sizeof(medium)+something"
  • <Tom[Arch_SB]> or some such
  • <Tom[Arch_SB]> we'll want to solve that before we allow sizes outside of game mode
  • <Nuance> currentsize+sizeof(medium)-sizeof(current) or whatever
  • <Tom[Arch_SB]> something of that flavor, yes
  • <Nuance> Have we thought about replacements for the terms STR, DEX, etc.
  • <Nuance> which are currenlty derived from the ABB:
  • <Tom[Arch_SB]> they can be derived from ABB/KEY while JEP is still around
  • <Nuance> and after that? global vars?
  • <Tom[Arch_SB]> if the new system is integrated, it will depend on how the data is created :)
  • <Tom[Arch_SB]> Well, just to make up one version...
  • <Tom[Arch_SB]> perhaps you have a local variable "score" on each ability, then you could create global vars and do this on Strength:
  • <Tom[Arch_SB]> MODIFY:STR|SOLVE|score
  • <Tom[Arch_SB]> then STR would be a global var
  • <Tom[Arch_SB]> usable just like the term today
  • <Nuance> solve? surely solve is the devil
  • <Nuance> :-)
  • <Nuance> MODIFY:STR|ADD|score
  • <Tom[Arch_SB]> heh
  • <Tom[Arch_SB]> So the base definition of ADD is that it requires a number
  • <Tom[Arch_SB]> that is how the wiki reads today
  • <Tom[Arch_SB]> and anything that refers to another variable needs to use SOLVE in order to invoke the formula system
  • <Nuance> ah right, so score is not a number , it is a free variable
  • <Tom[Arch_SB]> (since we can do a shortcut if we are just doing an add of a number)
  • <Tom[Arch_SB]> Having said that, the code is a bit ahead of the wiki
  • <Tom[Arch_SB]> The formula system in SVN has a working copy (not fully tested!) that allows ADD and the others to invoke the formula system
  • <Tom[Arch_SB]> since I got sick of typing SOLVE|value()+...
  • <Tom[Arch_SB]> and got sick of seeing Andrew M type it in the sample data he built, too
  • <Nuance> OOh, does that not negate the benefits of cacheability
  • <Tom[Arch_SB]> it is still "slower" than an integer in the sense that it invokes the formula system, but better syntax, IMHO
  • <Tom[Arch_SB]> it's actually broken out in the LST load system
  • <Tom[Arch_SB]> so it effectively builds a SOLVE in the background and submits that to the core
  • <Nuance> ah, so two different internal things
  • <Tom[Arch_SB]> just that LST never sees SOLVE so you have clearer LST syntax
  • <Tom[Arch_SB]> correct
  • <Nuance> a spoonful of syntatic sugar helps the medicine go down
  • <Tom[Arch_SB]> :)
  • <Tom[Arch_SB]> While we're on things, I'll note that there are currently 3 proposals in vote mode on _exp
  • <Nuance> I'm really likeing these FACT and formula systems
  • <Nuance> I'm not a chimp I don't get votes on those, I just stand ion the sidelines flinging poo
  • <Tom[Arch_SB]> eliminating ABB's special behavior, eliminating implicit sequencing (which is all of Align, Size, Stats, and Checks
  • <Tom[Arch_SB]> ) and the FACT/FACTSET/Output Model system
  • <Tom[Arch_SB]> The first and last would happen reasonably quickly after approval, the implicit sequencing one requires a few infrastructure changes internally, so would take a few weeks to get into the main repository
  • <Nuance> yeah, the GUI changes there should be fun
  • <Distant_Scholar> I voted on at least two of those; I just have to remember which two. :-) I did find the FACT/facet/FACTSET terminology amusing.
  • <Nuance> presumeably the number of stats as well as their order will become dynamic
  • <Tom[Arch_SB]> We've run out of words in the English language!
  • <Tom[Arch_SB]> Yes, one of the use cases is to cover where we have a different # of stats, including the 3.x expansions that added Luck, or whatever
  • <Nuance> which is an achievement in itself, what with english being synonym central
  • <Distant_Scholar> I've probably asked this before, but I'm forgetful: Are there plans to allow ABILITYs to have local variables? 'Cause it'd be very handy.
  • <Tom[Arch_SB]> that's... interesting
  • <Tom[Arch_SB]> it is the intent
  • <Tom[Arch_SB]> but the whole "category/nature" application of abilities makes it a bit tougher
  • <Tom[Arch_SB]> because putting them in without the ability to get them out really isn't all that useful
  • <Tom[Arch_SB]> The general gist is that I made an early assumption of being able to share certain infrastructure between two things, and I can't do that
  • <Tom[Arch_SB]> so I need to separate it and then do the work required to get it to work in abilities
  • <Tom[Arch_SB]> part of the reason I'm doing FACT/FACTSET first is that there is shared infrastructure between that and the variable system
  • <Tom[Arch_SB]> and they got out of sync a while ago, and that is just a pain
  • <Tom[Arch_SB]> so I want one of them (FACT being easier) in the main repo so it can serve as the master upon which the other is built
  • <Tom[Arch_SB]> the basic bonus being that almost any type that can serve as a FACT can be very easily transplanted as a variable
  • <Nuance> Hmm one more use of type that means something else ... :-)
  • <Tom[Arch_SB]> well, one of my secret goals is to delete the TYPE token... ;)
  • <Tom[Arch_SB]> although you raise a good point
  • <Nuance> You're using GROUP but not KIND
  • <Nuance> I'm fond of kind when naming things that I don't want to call a type
  • <Tom[Arch_SB]> I'm using it as data format
  • <Tom[Arch_SB]> so if I enable POINT in FACT, it will also work as a var
  • <Nuance> ah ok, haven't seen that
  • <Tom[Arch_SB]> This is actually a good discussion
  • <Tom[Arch_SB]> right now it's DATATYPE: in the definition file
  • <Tom[Arch_SB]> and that is BOOLEAN or STRING or NUMBER
  • <Tom[Arch_SB]> or whatever
  • <Tom[Arch_SB]> probably should be DATAFORMAT
  • <Tom[Arch_SB]> and then the managers that do that work should be in plugin.format not plugin.type
  • <Tom[Arch_SB]> I think I'll make that change this weekend
  • <Tom[Arch_SB]> avoiding calling another thing "type" is a good change
  • <Nuance> yes
  • <Nuance> good to get it changed before it get integrated into the main
  • <Tom[Arch_SB]> exactly
  • <Nuance> gets
  • <Tom[Arch_SB]> Any other questions on that?
  • <Nuance> no, it seems straightforward. We'll see when I start working with it
  • <Tom[Arch_SB]> I also started a discussion on _dev just a bit ago on output and replacement (things like OUTPUTNAME DESC and TARGETAREA) so open to ideas and input there as well... long term project, but want to get some ideas from folks
  • <Nuance> I spotted the email but haven't read it, I spotted the reminder about this at the same time at 10:58 (i.e. 2 mins to go)
  • <Tom[Arch_SB]> :)
  • <Tom[Arch_SB]> That's it from me. Any questions or topics from anyone else?
  • <[OGL]Nylanfs> Nothing from me, I'm just enjoying watching the formula discussion. :)
  • <Tom[Arch_SB]> Still lots of work to do on that one before it gets near the main release
  • <Nuance> thank you and good night