summaryrefslogtreecommitdiff
path: root/xgbgen/go.go
diff options
context:
space:
mode:
authorAndrew Gallant (Ocelot) <[email protected]>2012-05-06 03:06:02 -0400
committerAndrew Gallant (Ocelot) <[email protected]>2012-05-06 03:06:02 -0400
commitb081fc803a2b33daa0a9f5281c7a84e70df95068 (patch)
treeae80dd2f6bbd6a57074baa0929334b3b15f0acb4 /xgbgen/go.go
parent864eb4f165c20b07fd6ef2a2993aaa39a9714a1a (diff)
more bug fixes for the rest of the extensions
Diffstat (limited to 'xgbgen/go.go')
-rw-r--r--xgbgen/go.go18
1 files changed, 12 insertions, 6 deletions
diff --git a/xgbgen/go.go b/xgbgen/go.go
index df12e69..e0d4579 100644
--- a/xgbgen/go.go
+++ b/xgbgen/go.go
@@ -150,15 +150,21 @@ func (f *ExprField) Write(c *Context, prefix string) {
// Value field
func (f *ValueField) Define(c *Context) {
- c.Putln("// valueparam field: type: %s, mask name: %s, list name: %s",
- f.MaskType.SrcName(), f.MaskName, f.ListName)
- panic("todo")
+ c.Putln("%s %s", f.MaskName, f.SrcType())
+ c.Putln("%s []uint32", f.ListName)
}
func (f *ValueField) Read(c *Context, prefix string) {
- c.Putln("// reading valueparam: type: %s, mask name: %s, list name: %s",
- f.MaskType.SrcName(), f.MaskName, f.ListName)
- panic("todo")
+ ReadSimpleSingleField(c,
+ fmt.Sprintf("%s%s", prefix, f.MaskName), f.MaskType)
+ c.Putln("")
+ c.Putln("%s%s = make([]uint32, %s)",
+ prefix, f.ListName, f.ListLength().Reduce(prefix))
+ c.Putln("for i := 0; i < %s; i++ {", f.ListLength().Reduce(prefix))
+ c.Putln("%s%s[i] = Get32(buf[b:])", prefix, f.ListName)
+ c.Putln("b += 4")
+ c.Putln("}")
+ c.Putln("b = pad(b)")
}
func (f *ValueField) Write(c *Context, prefix string) {