Added support for multiple time windows in a day (e.g. mon: 1pm-2pm,
5pm-6pm)
This commit is contained in:
parent
8449110c67
commit
6dde7b420d
11
nowopen
11
nowopen
@ -63,7 +63,7 @@ local dsl = re.compile([=[
|
||||
ws? ("(" ws? {:tags: {| {tag} (ws? "," ws? {tag})* ws? |} :} ")")? ws? ":"
|
||||
({:times: {|
|
||||
((ws? comment? %nl)+ (%tab / " "^+2) ws?
|
||||
{| days ws? ("closed" / {:open: time :} "-" {:close: time :}) |})+
|
||||
{| days ws? ("closed" / (time_range (ws* "," ws* time_range)*)) |})+
|
||||
|} :})
|
||||
|}
|
||||
comment <- "#" [^%nl]*
|
||||
@ -71,6 +71,7 @@ local dsl = re.compile([=[
|
||||
({:from: {word} :} "-" {:to: {word} :} ":")
|
||||
/({:from: {word} :} ":")
|
||||
/({:from:''->'sun':} {:to:''->'sat':})
|
||||
time_range <- {| {:open: time :} "-" {:close: time :} |}
|
||||
time <- {|
|
||||
{:hour: {[0-9]+} :} (":" {:minute: {[0-9]+} :})? {:ampm: { "am" / "pm"} :}
|
||||
/ ("noon" {:hour: {~''->'12'~} :} {:ampm: {~''->'pm'~} :})
|
||||
@ -124,13 +125,15 @@ for i,place in ipairs(places) do
|
||||
while t < now do t = t + 24*60*60 end
|
||||
return t
|
||||
end
|
||||
if today_times and today_times.open then
|
||||
local until_open = t(today_times.open) - now
|
||||
local until_close = t(today_times.close) - now
|
||||
if today_times and today_times[1] then
|
||||
for _, window in ipairs(today_times) do
|
||||
local until_open = t(window.open) - now
|
||||
local until_close = t(window.close) - now
|
||||
if until_close < until_open then
|
||||
table.insert(options, {name=place.name, until_close=until_close})
|
||||
end
|
||||
end
|
||||
end
|
||||
::next_place::
|
||||
end
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user