summaryrefslogtreecommitdiffstatshomepage
path: root/plugins/data/data_marp.lua
diff options
context:
space:
mode:
author cracyc <cracyc@users.noreply.github.com>2018-01-14 08:39:37 -0600
committer cracyc <cracyc@users.noreply.github.com>2018-01-14 08:39:37 -0600
commit380bff22029f3088e026687df2a0d39c4915f58b (patch)
treeecf7526030ad1645398b99d00c3cebe79a93f99d /plugins/data/data_marp.lua
parentcea7ff08ace1cadc22d80074c6c734568a2ad93e (diff)
plugins/data: don't pollute the namespace and use emu.print_error (nw)
Diffstat (limited to 'plugins/data/data_marp.lua')
-rw-r--r--plugins/data/data_marp.lua32
1 files changed, 15 insertions, 17 deletions
diff --git a/plugins/data/data_marp.lua b/plugins/data/data_marp.lua
index 0919683d3e6..f74e098226b 100644
--- a/plugins/data/data_marp.lua
+++ b/plugins/data/data_marp.lua
@@ -1,6 +1,6 @@
-- get marp high score file from http://replay.marpirc.net/txt/scores3.htm
local dat = {}
-local db, sql = require("data/database")()
+local db = require("data/database")
local ver, info
local function init()
@@ -17,9 +17,9 @@ local function init()
end
end
- local stmt = db:prepare("SELECT version FROM version WHERE datfile = ?")
+ local stmt = db.prepare("SELECT version FROM version WHERE datfile = ?")
stmt:bind_values(file)
- if stmt:step() == sql.ROW then
+ if stmt:step() == db.ROW then
dbver = stmt:get_value(0)
end
stmt:finalize()
@@ -31,10 +31,10 @@ local function init()
elseif not fh then
return
elseif not dbver then
- db:exec("CREATE TABLE \"" .. file .. [[" (
+ db.exec("CREATE TABLE \"" .. file .. [[" (
romset VARCHAR NOT NULL,
data CLOB NOT NULL)]])
- db:exec("CREATE INDEX \"romset_" .. file .. "\" ON \"" .. file .. "_idx\"(romset)")
+ db.exec("CREATE INDEX \"romset_" .. file .. "\" ON \"" .. file .. "_idx\"(romset)")
end
for line in fh:lines() do
@@ -56,11 +56,11 @@ local function init()
end
if dbver then
- db:exec("DELETE FROM \"" .. file .. "\"")
- db:exec("DELETE FROM \"" .. file .. "_idx\"")
- stmt = db:prepare("UPDATE version SET version = ? WHERE datfile = ?")
+ db.exec("DELETE FROM \"" .. file .. "\"")
+ db.exec("DELETE FROM \"" .. file .. "_idx\"")
+ stmt = db.prepare("UPDATE version SET version = ? WHERE datfile = ?")
else
- stmt = db:prepare("INSERT INTO version VALUES (?, ?)")
+ stmt = db.prepare("INSERT INTO version VALUES (?, ?)")
end
stmt:bind_values(ver, file)
stmt:step()
@@ -68,7 +68,7 @@ local function init()
fh:seek("set")
local buffer = fh:read("a")
- db:exec("BEGIN TRANSACTION")
+ db.exec("BEGIN TRANSACTION")
local function gmatchpos()
local pos = 1
@@ -102,25 +102,23 @@ local function init()
end
for set, data in gmatchpos() do
- stmt = db:prepare("INSERT INTO \"" .. file .. "\" VALUES (?, ?)")
+ stmt = db.prepare("INSERT INTO \"" .. file .. "\" VALUES (?, ?)")
stmt:bind_values(set, data)
stmt:step()
stmt:finalize()
end
fh:close()
- db:exec("END TRANSACTION")
+ db.exec("END TRANSACTION")
end
-if db then
- init()
-end
+init()
function dat.check(set, softlist)
- if softlist or not ver or not db then
+ if softlist or not ver then
return nil
end
info = nil
- local stmt = db:prepare("SELECT data FROM \"scores3.htm\" AS f WHERE romset = ?")
+ local stmt = db.prepare("SELECT data FROM \"scores3.htm\" AS f WHERE romset = ?")
stmt:bind_values(set)
if stmt:step() == sql.ROW then
info = "#j2\n" .. stmt:get_value(0)