fix stuff and add the start of the filtering code
This commit is contained in:
parent
6f874c3d81
commit
5db9695406
@ -19,6 +19,8 @@ fFG = "|14"
|
|||||||
barOffset = 1
|
barOffset = 1
|
||||||
highlightedBBS = ""
|
highlightedBBS = ""
|
||||||
|
|
||||||
|
filter = ""
|
||||||
|
|
||||||
KEY_UP = chr(72)
|
KEY_UP = chr(72)
|
||||||
KEY_DOWN = chr(80)
|
KEY_DOWN = chr(80)
|
||||||
KEY_ESCAPE = chr(27)
|
KEY_ESCAPE = chr(27)
|
||||||
@ -31,6 +33,7 @@ KEY_END = chr(79)
|
|||||||
KEY_PGUP = chr(73)
|
KEY_PGUP = chr(73)
|
||||||
KEY_PGDN = chr(81)
|
KEY_PGDN = chr(81)
|
||||||
KEY_QMARK = chr(63)
|
KEY_QMARK = chr(63)
|
||||||
|
KEY_BSPACE = chr(8)
|
||||||
|
|
||||||
def saveDB():
|
def saveDB():
|
||||||
global ratingsDB
|
global ratingsDB
|
||||||
@ -110,6 +113,8 @@ def initNodelist():
|
|||||||
BBS_SOFTWARE = "Legacy/X"
|
BBS_SOFTWARE = "Legacy/X"
|
||||||
elif [match for match in tmp if "ENIG" in match]:
|
elif [match for match in tmp if "ENIG" in match]:
|
||||||
BBS_SOFTWARE = "Enigma1/2"
|
BBS_SOFTWARE = "Enigma1/2"
|
||||||
|
elif [match for match in tmp if "EG" in match]:
|
||||||
|
BBS_SOFTWARE = "Enigma1/2"
|
||||||
elif [match for match in tmp if "CNET" in match]:
|
elif [match for match in tmp if "CNET" in match]:
|
||||||
BBS_SOFTWARE = "CNET"
|
BBS_SOFTWARE = "CNET"
|
||||||
elif [match for match in tmp if "PCB" in match]:
|
elif [match for match in tmp if "PCB" in match]:
|
||||||
@ -176,12 +181,17 @@ def getBBS(o, s):
|
|||||||
def showList(offset = 0):
|
def showList(offset = 0):
|
||||||
global barOffset
|
global barOffset
|
||||||
global highlightedBBS
|
global highlightedBBS
|
||||||
|
global filter
|
||||||
|
#gotoxy(68,24); write("|19|11"+str(len(filter))+" ")
|
||||||
R = 1
|
R = 1
|
||||||
count = 0
|
count = 0
|
||||||
gotoxy(1,2)
|
gotoxy(1,2)
|
||||||
write("|16|07")
|
write("|16|07")
|
||||||
tmpDict = sorted(dictNodelist, reverse=False)
|
tmpDict = sorted(dictNodelist, reverse=False)
|
||||||
for BBS in tmpDict:
|
for BBS in tmpDict:
|
||||||
|
if not BBS.upper().startswith(filter):
|
||||||
|
pass
|
||||||
|
else:
|
||||||
count += 1
|
count += 1
|
||||||
if count < offset+1:
|
if count < offset+1:
|
||||||
pass
|
pass
|
||||||
@ -206,6 +216,10 @@ def showList(offset = 0):
|
|||||||
thisLine = C1+" "+C2+" "+C3+" "+SPC+C4+" "+"|10"+(chr(254)*C5).rjust(7)
|
thisLine = C1+" "+C2+" "+C3+" "+SPC+C4+" "+"|10"+(chr(254)*C5).rjust(7)
|
||||||
pad = " "*(79-len(stripmci(thisLine)))
|
pad = " "*(79-len(stripmci(thisLine)))
|
||||||
writeln(thisLine.ljust(79)+pad+"|16|07")
|
writeln(thisLine.ljust(79)+pad+"|16|07")
|
||||||
|
if count < screenDepth-1:
|
||||||
|
for i in range(count, screenDepth):
|
||||||
|
gotoxy(1,i); write("|[K")
|
||||||
|
gotoxy(1,24); write("|19|11"+filter.ljust(18)[:18]+"|16|07")
|
||||||
|
|
||||||
def drawWindow(x1, y1, x2, y2, title = ""):
|
def drawWindow(x1, y1, x2, y2, title = ""):
|
||||||
for Y in range(y1, y2):
|
for Y in range(y1, y2):
|
||||||
@ -216,16 +230,16 @@ def drawWindow(x1, y1, x2, y2, title = ""):
|
|||||||
gotoxy(I, y2-2); write('|05'+chr(205))
|
gotoxy(I, y2-2); write('|05'+chr(205))
|
||||||
for I in range(y1+1, y2-1):
|
for I in range(y1+1, y2-1):
|
||||||
gotoxy(x1+1, I); write('|13'+chr(186))
|
gotoxy(x1+1, I); write('|13'+chr(186))
|
||||||
gotoxy(x2-1, I); write('|05'+chr(186))
|
gotoxy(x2-2, I); write('|05'+chr(186))
|
||||||
if title:
|
if title:
|
||||||
ntitle = "[ |15"+title+"|13 ]"
|
ntitle = "[ |15"+title+"|13 ]"
|
||||||
ltitle = len(stripmci(ntitle))
|
ltitle = len(stripmci(ntitle))
|
||||||
center = ((x2-x1)/2)-(ltitle/2)+x1
|
center = ((x2-x1)/2)-(ltitle/2)+x1
|
||||||
gotoxy(center, y1+1); write('|13'+ntitle)
|
gotoxy(center, y1+1); write('|13'+ntitle)
|
||||||
gotoxy(x1+1,y1+1); write('|13'+chr(201))
|
gotoxy(x1+1,y1+1); write('|13'+chr(201))
|
||||||
gotoxy(x2-1,y1+1); write('|13'+chr(187))
|
gotoxy(x2-2,y1+1); write('|13'+chr(187))
|
||||||
gotoxy(x1+1,y2-2); write('|05'+chr(200))
|
gotoxy(x1+1,y2-2); write('|05'+chr(200))
|
||||||
gotoxy(x2-1,y2-2); write('|05'+chr(188))
|
gotoxy(x2-2,y2-2); write('|05'+chr(188))
|
||||||
|
|
||||||
def showHelp():
|
def showHelp():
|
||||||
write("|SS")
|
write("|SS")
|
||||||
@ -241,7 +255,7 @@ def showHelp():
|
|||||||
gotoxy(13,14);write("|15In the BBS Detail view: ")
|
gotoxy(13,14);write("|15In the BBS Detail view: ")
|
||||||
gotoxy(13,15);write("|15LEFT/RIGHT allows you to rate the BBS from 0-7 ")
|
gotoxy(13,15);write("|15LEFT/RIGHT allows you to rate the BBS from 0-7 ")
|
||||||
gotoxy(13,16);write("|15If the BBS isn't Private, connect to it by pressing C")
|
gotoxy(13,16);write("|15If the BBS isn't Private, connect to it by pressing C")
|
||||||
gotoxy(13,17);write("|15To leave the detail view press Q ")
|
gotoxy(13,17);write("|15To leave the detail view press Q or UP/DOWN arrows. ")
|
||||||
gotoxy(13,18);write("|15 ")
|
gotoxy(13,18);write("|15 ")
|
||||||
gotoxy(13,19);write("|15To exit the program press ESCAPE at the list view. ")
|
gotoxy(13,19);write("|15To exit the program press ESCAPE at the list view. ")
|
||||||
gotoxy(13,20);write("|15 ")
|
gotoxy(13,20);write("|15 ")
|
||||||
@ -263,12 +277,12 @@ def showDetail(BBS):
|
|||||||
address = "Unknown"
|
address = "Unknown"
|
||||||
port = dictNodelist[BBS]["PORT"]
|
port = dictNodelist[BBS]["PORT"]
|
||||||
node_addresses = dictNodelist[BBS]["NODE_ADDRESSES"]
|
node_addresses = dictNodelist[BBS]["NODE_ADDRESSES"]
|
||||||
drawWindow(15,4,65,20,bbs)
|
drawWindow(15,4,66,20,bbs)
|
||||||
|
|
||||||
gotoxy(18,7); write("|13BBS SysOp")
|
gotoxy(18,7); write("|13BBS SysOp")
|
||||||
gotoxy(18,8); write('|15'+sysop)
|
gotoxy(18,8); write('|15'+sysop)
|
||||||
gotoxy(51,7); write("|13BBS Location")
|
gotoxy(51,7); write("|13BBS Location")
|
||||||
gotoxy(41,8); write('|15'+location.rjust(22))
|
gotoxy(41,8); write('|15'+location.rjust(22)[:22])
|
||||||
|
|
||||||
gotoxy(18,10); write("|13BBS Address")
|
gotoxy(18,10); write("|13BBS Address")
|
||||||
gotoxy(18,11); write('|15'+address+':'+str(port))
|
gotoxy(18,11); write('|15'+address+':'+str(port))
|
||||||
@ -294,14 +308,14 @@ def showDetail(BBS):
|
|||||||
gotoxy(1,24);
|
gotoxy(1,24);
|
||||||
canend = "no"
|
canend = "no"
|
||||||
while not canend == "yes":
|
while not canend == "yes":
|
||||||
ch = onekey(chr(13) + 'CQ'+KEY_RIGHT+KEY_LEFT, False)
|
ch = onekey(chr(13) + 'CQ'+KEY_RIGHT+KEY_LEFT+KEY_UP+KEY_DOWN, False)
|
||||||
if ch == 'Q':
|
if ch == 'Q' or ch == KEY_UP or ch == KEY_DOWN:
|
||||||
canend = "yes"
|
canend = "yes"
|
||||||
if ch == 'C':
|
if ch == 'C':
|
||||||
if address and "Private" not in address and "Unknown" not in address:
|
if address and "Private" not in address and "Unknown" not in address:
|
||||||
write('|SS'); write('|CL')
|
write('|SS'); write('|[1|CL')
|
||||||
menucmd('IT','/addr='+address+' /port='+str(port))
|
menucmd('IT','/addr='+address+' /port='+str(port))
|
||||||
write('[0;26 D'); write('|RS')
|
write('[0;26 D'); write('|RS|[0')
|
||||||
if ch == KEY_LEFT:
|
if ch == KEY_LEFT:
|
||||||
if rating > 0:
|
if rating > 0:
|
||||||
rating -= 1
|
rating -= 1
|
||||||
@ -317,7 +331,7 @@ def showDetail(BBS):
|
|||||||
write("|RS")
|
write("|RS")
|
||||||
|
|
||||||
def mainMenu():
|
def mainMenu():
|
||||||
global barOffset, offset, highlightedBBS
|
global barOffset, offset, highlightedBBS, filter
|
||||||
maxOffset = len(dictNodelist)-screenDepth-1
|
maxOffset = len(dictNodelist)-screenDepth-1
|
||||||
finished = "no"
|
finished = "no"
|
||||||
highlightedBBS = getBBS(barOffset, offset)
|
highlightedBBS = getBBS(barOffset, offset)
|
||||||
@ -368,9 +382,16 @@ def mainMenu():
|
|||||||
finished = "yes"
|
finished = "yes"
|
||||||
if char == KEY_QMARK:
|
if char == KEY_QMARK:
|
||||||
showHelp()
|
showHelp()
|
||||||
|
#if char == KEY_BSPACE:
|
||||||
|
# if len(filter) > 0:
|
||||||
|
# filter = filter[:-1]
|
||||||
|
#if char.isalnum() or char.isspace():
|
||||||
|
# if len(filter) < 18:
|
||||||
|
# filter = filter+char.upper()
|
||||||
return finished
|
return finished
|
||||||
|
|
||||||
menucmd('NA','sIftIng fOr gOld')
|
menucmd('NA','sIftIng fOr gOld')
|
||||||
|
write("|[0")
|
||||||
loadDB()
|
loadDB()
|
||||||
initNodelist()
|
initNodelist()
|
||||||
offset = 0
|
offset = 0
|
||||||
@ -378,3 +399,4 @@ init()
|
|||||||
highlightedBBS = getBBS(0, 0)
|
highlightedBBS = getBBS(0, 0)
|
||||||
while canexit == "no":
|
while canexit == "no":
|
||||||
canexit = mainMenu()
|
canexit = mainMenu()
|
||||||
|
write("|[1")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user