瀏覽代碼

Sqlite with db. Fixed RenderStatusValue.

If we don't have a :, we render digits in value color.
Steve Thielemann 3 年之前
父節點
當前提交
1b0e2205a5
共有 2 個文件被更改,包括 16 次插入6 次删除
  1. 4 0
      db.go
  2. 12 6
      space-ace.go

+ 4 - 0
db.go

@@ -3,8 +3,12 @@ package main
 import (
 	"database/sql"
 	"log"
+
+	_ "github.com/mattn/go-sqlite3"
 )
 
+// Make sure the go-sqlite3 is here.  Keep the db related things together.
+
 type DBData struct {
 	DB   *sql.DB
 	User string

+ 12 - 6
space-ace.go

@@ -12,7 +12,6 @@ import (
 	"time"
 	"unicode"
 
-	_ "github.com/mattn/go-sqlite3"
 	"github.com/seehuhn/mt19937"
 )
 
@@ -398,15 +397,22 @@ door::renderFunction statusValue(door::ANSIColor status,
 
 func RenderStatusValue(status string, value string) func(string) string {
 	renderF := func(text string) string {
-		var result string
+
 		pos := strings.Index(text, ":")
 		if pos != -1 {
-			result = status + text[:pos] + value + text[pos:]
+			return status + text[:pos] + value + text[pos:]
 		} else {
-			// TO FIX:  See above.  We do digits in value color...
-			result = status + text
+			var r door.Render = door.Render{Line: text}
+
+			for _, letter := range text {
+				if unicode.IsDigit(letter) {
+					r.Append(value, 1)
+				} else {
+					r.Append(status, 1)
+				}
+			}
+			return r.Result
 		}
-		return result
 	}
 	return renderF
 }