summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/Philipp15b/go-steam/tf2/protocol/econ.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/Philipp15b/go-steam/tf2/protocol/econ.go')
-rw-r--r--vendor/github.com/Philipp15b/go-steam/tf2/protocol/econ.go51
1 files changed, 51 insertions, 0 deletions
diff --git a/vendor/github.com/Philipp15b/go-steam/tf2/protocol/econ.go b/vendor/github.com/Philipp15b/go-steam/tf2/protocol/econ.go
new file mode 100644
index 00000000..aabb2ea8
--- /dev/null
+++ b/vendor/github.com/Philipp15b/go-steam/tf2/protocol/econ.go
@@ -0,0 +1,51 @@
+package protocol
+
+import (
+ "encoding/binary"
+ "io"
+)
+
+type MsgGCSetItemPosition struct {
+ AssetId, Position uint64
+}
+
+func (m *MsgGCSetItemPosition) Serialize(w io.Writer) error {
+ return binary.Write(w, binary.LittleEndian, m)
+}
+
+type MsgGCCraft struct {
+ Recipe int16 // -2 = wildcard
+ numItems int16
+ Items []uint64
+}
+
+func (m *MsgGCCraft) Serialize(w io.Writer) error {
+ m.numItems = int16(len(m.Items))
+ return binary.Write(w, binary.LittleEndian, m)
+}
+
+type MsgGCDeleteItem struct {
+ ItemId uint64
+}
+
+func (m *MsgGCDeleteItem) Serialize(w io.Writer) error {
+ return binary.Write(w, binary.LittleEndian, m.ItemId)
+}
+
+type MsgGCNameItem struct {
+ Tool, Target uint64
+ Name string
+}
+
+func (m *MsgGCNameItem) Serialize(w io.Writer) error {
+ err := binary.Write(w, binary.LittleEndian, m.Tool)
+ if err != nil {
+ return err
+ }
+ err = binary.Write(w, binary.LittleEndian, m.Target)
+ if err != nil {
+ return err
+ }
+ _, err = w.Write([]byte(m.Name))
+ return err
+}