| Author |
Message |
Topic: SteamWin - Project now split from SteamLab |
bmcclure
Replies: 5
Views: 936
|
Forum: Scripts & Functions Posted: Sat Oct 31, 2009 10:07 am Subject: SteamWin - Project now split from SteamLab |
It's not just you--I doubt any of my current links work due to a lot of network restructuring.
This version of SteamWin is outdated anyhow; it "outgrew" AHK and graduated to Visual C#, bu ... |
Topic: [Class] IniFile 0.6.6 - Object-oriented INI file handling |
bmcclure
Replies: 28
Views: 4012
|
Forum: Scripts & Functions Posted: Mon Oct 12, 2009 3:20 am Subject: [Class] IniFile 0.6.6 - Object-oriented INI file handling |
| This was built surrounding the recognized INI file "standards" (basically non-existent) stating that a semicolon indicates the start of a comment and everything after it should be ignored (s ... |
Topic: AHKLitening - Wrapper/helper lib for SQLitening (SQlite) |
bmcclure
Replies: 23
Views: 2636
|
Forum: Scripts & Functions Posted: Thu Aug 13, 2009 10:37 pm Subject: AHKLitening - Wrapper/helper lib for SQLitening (SQlite) |
A small part of the wrapper works, but it is fundamentally broken, and I could not figure out why.
My two largest projects I was planning to use this for were FOMS and SteamLab, however both projec ... |
Topic: Parsing XML from an input stream |
bmcclure
Replies: 2
Views: 305
|
Forum: Ask for Help Posted: Wed Jun 24, 2009 7:01 am Subject: Parsing XML from an input stream |
| Yes, I'm implementing SAX, and am creating an XMLReader based on the XMLReader interface (to be provided by the XMLReaderFactory class). There is no official SAX API, but I'm using the SAX class refer ... |
Topic: Parsing XML from an input stream |
bmcclure
Replies: 2
Views: 305
|
Forum: Ask for Help Posted: Tue Jun 23, 2009 10:23 pm Subject: Parsing XML from an input stream |
I'm writing a SAX (Simple API for XML) implementation for AHK, modeled after SAX for Java
I have an input stream of bytes (in this case characters) that I would like to parse.
My question is bas ... |
Topic: Class library (OOP) - Help Thread |
bmcclure
Replies: 91
Views: 6520
|
Forum: Ask for Help Posted: Tue Jun 16, 2009 8:40 pm Subject: Class library (OOP) - Help Thread |
| Generally yes, I think you're right. Automatically assuming size assumes that your getters and setters are in proper byte order (eg. no bytes skipped when specifying indexes), and might slow down the ... |
Topic: Class library (OOP) - Help Thread |
bmcclure
Replies: 91
Views: 6520
|
Forum: Ask for Help Posted: Mon Jun 15, 2009 7:43 pm Subject: Class library (OOP) - Help Thread |
The first thing I see is that you need to set your builtInSize in your constructor function.
Currently the static builtInSize = 0, but you should make it 8, to indicate two 4-byte values (b1 and b2 ... |
Topic: [Class] IniFile 0.6.6 - Object-oriented INI file handling |
bmcclure
Replies: 28
Views: 4012
|
Forum: Scripts & Functions Posted: Thu Jun 11, 2009 3:40 pm Subject: [Class] IniFile 0.6.6 - Object-oriented INI file handling |
There are options (duplicateSections and duplicateKeys) you can set on the IniFile object to choose whether or not you want to allow duplicates in your IniFile.
After you create your IniFile object ... |
Topic: Class library (OOP) - Help Thread |
bmcclure
Replies: 91
Views: 6520
|
Forum: Ask for Help Posted: Sun Jun 07, 2009 8:51 am Subject: Class library (OOP) - Help Thread |
| It's included in joebodo's tail.zip file: http://www.autohotkey.net/~joebodo/tail.zip |
Topic: Class library (OOP) - Help Thread |
bmcclure
Replies: 91
Views: 6520
|
Forum: Ask for Help Posted: Sun Jun 07, 2009 3:50 am Subject: Class library (OOP) - Help Thread |
| Interesting work joebodo. I like the classes you've created and the way they're implemented to an extent. I only wish AHK's lib dir would support subdirectories so that we could have a full class path ... |
Topic: Class library (OOP) - Help Thread |
bmcclure
Replies: 91
Views: 6520
|
Forum: Ask for Help Posted: Sat Jun 06, 2009 9:30 am Subject: Class library (OOP) - Help Thread |
Oh, no, I understand that--I misunderstood what Class_scall was for, and simply don't fully understand static functions at this point--working on that.
The parameter passed to scall was supposed to ... |
Topic: Class library (OOP) - Help Thread |
bmcclure
Replies: 91
Views: 6520
|
Forum: Ask for Help Posted: Sat Jun 06, 2009 8:38 am Subject: Class library (OOP) - Help Thread |
| It's pretty simple as interfaces go... I haven't documented it as well as I should... but it's an AHK implementation of a factory class as used for many Java projects, only AHK doesn't have most of th ... |
Topic: Class library (OOP) - Help Thread |
bmcclure
Replies: 91
Views: 6520
|
Forum: Ask for Help Posted: Sat Jun 06, 2009 4:43 am Subject: Class library (OOP) - Help Thread |
| In my current work with classes, I have three Factory classes going which are designed to persistently register different implementations of some of my interfaces (since sometimes you can't necessaril ... |
Topic: Class library (OOP) - Help Thread |
bmcclure
Replies: 91
Views: 6520
|
Forum: Ask for Help Posted: Fri Jun 05, 2009 12:26 am Subject: Class library (OOP) - Help Thread |
Thanks very much for the clarification.
I never even considered using a flat array and simply assigning 5 values to each field. It seems less Object-oriented than creating an Attribute object conta ... |
Topic: Class library (OOP) - Help Thread |
bmcclure
Replies: 91
Views: 6520
|
Forum: Ask for Help Posted: Thu Jun 04, 2009 10:54 pm Subject: Class library (OOP) - Help Thread |
Maybe this is beyond the scope of what's available now, but what if you want to have a "table" of data stored as an Array or Vector?
For example, I want a Vector of Element attributes for ... |
| |