--- Log opened Sat Mar 23 00:00:59 2013 |
00:03 | | VirusJTG_ [VirusJTG@Nightstar-09c31e7a.sta.comporium.net] has joined #code |
00:06 | | VirusJTG [VirusJTG@Nightstar-09c31e7a.sta.comporium.net] has quit [Ping timeout: 121 seconds] |
00:32 | | Rhamphoryncus [rhamph@Nightstar-f8b1f87b.abhsia.telus.net] has quit [Ping timeout: 121 seconds] |
00:36 | | Rhamphoryncus [rhamph@Nightstar-f8b1f87b.abhsia.telus.net] has joined #code |
00:36 | | mode/#code [+o Rhamphoryncus] by ChanServ |
00:39 | | VirusJTG__ [VirusJTG@Nightstar-09c31e7a.sta.comporium.net] has joined #code |
00:42 | | VirusJTG_ [VirusJTG@Nightstar-09c31e7a.sta.comporium.net] has quit [Ping timeout: 121 seconds] |
00:55 | | You're now known as TheWatcher[T-2] |
00:59 | | You're now known as TheWatcher[zZzZ] |
01:12 | | Rhamphoryncus [rhamph@Nightstar-f8b1f87b.abhsia.telus.net] has quit [Ping timeout: 121 seconds] |
01:13 | | Rhamphoryncus [rhamph@Nightstar-f8b1f87b.abhsia.telus.net] has joined #code |
01:13 | | mode/#code [+o Rhamphoryncus] by ChanServ |
02:03 | | Kindamoody[zZz] is now known as Kindamoody |
02:12 | | Wires [abudhabi@Nightstar-c3110575.adsl.inetia.pl] has quit [Ping timeout: 121 seconds] |
02:12 | | Wires [abudhabi@Nightstar-c3110575.adsl.inetia.pl] has joined #code |
02:46 | | Rhamphoryncus [rhamph@Nightstar-f8b1f87b.abhsia.telus.net] has quit [Ping timeout: 121 seconds] |
02:50 | | Rhamphoryncus [rhamph@Nightstar-f8b1f87b.abhsia.telus.net] has joined #code |
02:50 | | mode/#code [+o Rhamphoryncus] by ChanServ |
02:52 | | Wires [abudhabi@Nightstar-c3110575.adsl.inetia.pl] has quit [Ping timeout: 121 seconds] |
02:52 | | Wires [abudhabi@Nightstar-c3110575.adsl.inetia.pl] has joined #code |
03:07 | | VirusJTG__ [VirusJTG@Nightstar-09c31e7a.sta.comporium.net] has quit [[NS] Quit: Program Shutting down] |
03:30 | | syksleep is now known as Syk |
05:25 | | * Vornicus pokes at the design of something |
05:30 | <~Vornicus> | Okay, feat selection and enactment |
05:30 | | Derakon is now known as Derakon[AFK] |
05:32 | <~Vornicus> | Feats have functions that tell them whether they're allowed to be chosen: among other things, these requirements can include race, class, ability scores, skill selections, and other feat selections. This isn't the hard part. |
05:33 | <~Vornicus> | well, okay, it is part of the hard part. |
05:38 | <~Vornicus> | Second: feats have effects. Most of these effects need only be taken into account at results-calculation time: Durable gives additional hit points, Armor of Bahamut grants a power, Astral Fire improves other powers. |
05:42 | <~Vornicus> | But some give additional choices: Linguist and Skill Training and Weapon Focus all ask additional questions of the player. Skill Training in particular is problematic - it has to hook into a selection system "earlier on" in the program. and once you've trained in a skill that might expand your feat lists. |
06:19 | | celticminstrel [celticminst@Nightstar-e83b3651.cable.rogers.com] has quit [[NS] Quit: And lo! The computer falls into a deep sleep, to awake again some other day!] |
06:29 | | OrthiaLap [orthia@Nightstar-fae4ee48.ihug.co.nz] has quit [Ping timeout: 121 seconds] |
09:08 | | You're now known as TheWatcher |
09:11 | | Vornicus [vorn@ServerAdministrator.Nightstar.Net] has quit [[NS] Quit: Leaving] |
11:11 | | Kindamoody is now known as Kindamoody|out |
13:42 | | celticminstrel [celticminst@Nightstar-e83b3651.cable.rogers.com] has joined #code |
13:42 | | mode/#code [+o celticminstrel] by ChanServ |
14:13 | | VirusJTG [VirusJTG@Nightstar-09c31e7a.sta.comporium.net] has joined #code |
15:33 | | Syk is now known as syksleep |
16:25 | <&ToxicFrog> | Hmm. Dynamic binding would be useful here. |
16:25 | <&ToxicFrog> | Oh wait! I have that! |
16:57 | | Derakon[AFK] is now known as Derakon |
17:32 | | Kindamoody|out is now known as Kindamoody |
19:32 | | Vornicus [vorn@ServerAdministrator.Nightstar.Net] has joined #code |
19:32 | | mode/#code [+qo Vornicus Vornicus] by ChanServ |
19:36 | | Kindamoody is now known as Kindamoody[zZz] |
19:56 | | RichyB [richardb@Nightstar-543d895d.range217-39.btcentralplus.com] has joined #code |
20:01 | | * Derakon reads through a gigantic pullreq for Pyrel. |
20:02 | <&Derakon> | Why is it that every new contributor fails to get the style guide right when it comes to boolean variables? |
20:02 | <&Derakon> | It's not "unique", it's "isUnique". It's not "reverse", it's "shouldReverse". Etc. |
20:02 | <&Derakon> | They say they're reading the style guide! |
20:39 | <~Vornicus> | Wait, you want it to say "isUnique" |
20:40 | <~Vornicus> | ? |
20:40 | <&Derakon> | Yes. |
20:40 | <~Vornicus> | I usually use verb thingies like that for functions that return bools. |
20:40 | <&Derakon> | The addition of a state-of-being verb at the beginning of the name marks it as a boolean. |
20:41 | <&Derakon> | I've never had an issue with name conflicts (actual or just confusing) between bools and functions that return bools. *shrug* |
20:41 | <&Derakon> | Whereas I get confused all the time about what a variable is if it doesn't have an indicative name. |
20:42 | <&Derakon> | (Also, the function would be named "getIsUnique") |
20:42 | <@celticminstrel> | ...that's silly. |
20:43 | <&Derakon> | It's consistently readable. |
20:43 | <&Derakon> | Silliness is irrelevant. |
20:43 | | * celticminstrel shrugs. |
20:43 | <@celticminstrel> | Still silly! |
20:43 | <@celticminstrel> | :P |
21:28 | | RichyB [richardb@Nightstar-543d895d.range217-39.btcentralplus.com] has quit [[NS] Quit: >:3 This is BunThulhu. Copy him into your quit message to help him take over the Internet.] |
21:44 | | Wires is now known as AnnoDomini |
22:26 | | gnolam [lenin@Nightstar-7bcbe2b8.cust.bredbandsbolaget.se] has quit [Connection reset by peer] |
22:28 | | gnolam [lenin@Nightstar-7bcbe2b8.cust.bredbandsbolaget.se] has joined #code |
22:28 | | mode/#code [+o gnolam] by ChanServ |
--- Log closed Sun Mar 24 00:00:14 2013 |