1
0
mirror of https://github.com/zellyn/go6502.git synced 2024-10-03 18:54:58 +00:00
go6502/asm/context/context.go
2014-06-16 08:24:42 -07:00

164 lines
3.3 KiB
Go

package context
import "fmt"
type Context interface {
Set(name string, value uint16)
Get(name string) (uint16, bool)
SetAddr(uint16)
ClearAddr(message string)
ClearMesg() string
GetAddr() (uint16, bool)
Zero() (uint16, error) // type ZeroFunc
RemoveChanged()
AddrKnown() bool
Clear()
SettingOn(name string) error
SettingOff(name string) error
Setting(name string) bool
HasSetting(name string) bool
AddMacroName(name string)
HasMacroName(name string) bool
}
type SimpleContext struct {
symbols map[string]symbolValue
addr int32
lastLabel string
clearMesg string // Saved message describing why Addr was cleared.
highbit byte // OR-mask for ASCII high bit
onOff map[string]bool
onOffDefaults map[string]bool
macroNames map[string]bool
}
type symbolValue struct {
v uint16
changed bool // Did the value ever change?
}
func (sc *SimpleContext) fix() {
if sc.symbols == nil {
sc.symbols = make(map[string]symbolValue)
}
}
func (sc *SimpleContext) Zero() (uint16, error) {
return 0, fmt.Errorf("Not implemented: context.SimpleContext.Zero()")
}
func (sc *SimpleContext) Get(name string) (uint16, bool) {
if name == "*" {
return sc.GetAddr()
}
sc.fix()
s, found := sc.symbols[name]
return s.v, found
}
func (sc *SimpleContext) ClearAddr(message string) {
sc.addr = -1
sc.clearMesg = message
}
func (sc *SimpleContext) SetAddr(addr uint16) {
sc.addr = int32(addr)
}
func (sc *SimpleContext) ClearMesg() string {
return sc.clearMesg
}
func (sc *SimpleContext) GetAddr() (uint16, bool) {
if sc.addr == -1 {
return 0, false
}
return uint16(sc.addr), true
}
func (sc *SimpleContext) AddrKnown() bool {
return sc.addr != -1
}
func (sc *SimpleContext) Set(name string, value uint16) {
sc.fix()
s, found := sc.symbols[name]
if found && s.v != value {
s.changed = true
}
s.v = value
sc.symbols[name] = s
}
func (sc *SimpleContext) RemoveChanged() {
sc.fix()
for n, s := range sc.symbols {
if s.changed {
delete(sc.symbols, n)
}
}
}
func (sc *SimpleContext) Clear() {
sc.symbols = make(map[string]symbolValue)
sc.highbit = 0x00
sc.macroNames = nil
sc.resetOnOff()
}
func (sc *SimpleContext) SettingOn(name string) error {
if !sc.HasSetting(name) {
return fmt.Errorf("no settable variable named '%s'", name)
}
if sc.onOff == nil {
sc.onOff = map[string]bool{name: true}
} else {
sc.onOff[name] = true
}
return nil
}
func (sc *SimpleContext) SettingOff(name string) error {
if !sc.HasSetting(name) {
return fmt.Errorf("no settable variable named '%s'", name)
}
if sc.onOff == nil {
sc.onOff = map[string]bool{name: false}
} else {
sc.onOff[name] = false
}
return nil
}
func (sc *SimpleContext) Setting(name string) bool {
return sc.onOff[name]
}
func (sc *SimpleContext) HasSetting(name string) bool {
_, ok := sc.onOff[name]
return ok
}
func (sc *SimpleContext) AddMacroName(name string) {
if sc.macroNames == nil {
sc.macroNames = make(map[string]bool)
}
sc.macroNames[name] = true
}
func (sc *SimpleContext) HasMacroName(name string) bool {
return sc.macroNames[name]
}
func (sc *SimpleContext) resetOnOff() {
sc.onOff = make(map[string]bool)
for k, v := range sc.onOffDefaults {
sc.onOff[k] = v
}
}
func (sc *SimpleContext) SetOnOffDefaults(defaults map[string]bool) {
sc.onOffDefaults = defaults
sc.resetOnOff()
}