← Back to team overview

sikuli-driver team mailing list archive

Re: [Question #215490]: Dynamically capture symbols and search them --- all this in a loop

 

Question #215490 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/215490

Ben gave more information on the question:
Here is a smaller version:

# --------------------------------------------
# functions to be used in different situations
def captureSymbol(i = 0):
    r = other[i]
    x = r.x + sbMarginLeftRight
    w = r.w - 2 * sbMarginLeftRight
    y = r.y + sbMarginTopBottom
    h = r.h - 2 * sbMarginTopBottom
    r = Region(x, y, w, h)
    r.highlight(1)
    return capture(r)

    # define the smallest possible image region
    symbol = Region(l, b - 60, 50, 60)
    #symbol.highlight(3)
    return capture(symbol)

def checkCells(imgSymbol, start = 0):
    # find the cell containing the symbol
    match = None
    for i in range(start, len(other)):
        if other[i].exists(imgSymbol, 0):
            match = other[i]
            break
    if not match: return None
    match.highlight(1)
    return match
# end function area
# ------------------------------------------------------------


# ----------------------- start of main workflow -------------

# this is based on surfbar9
# to run this script, surfbar9 must be visible on the screen

#Wait for counter on Surfbar to reach Zero
wait(10)

#Mouse speed
Settings.MoveMouseDelay = 0
# find the position
imgBase = "1354267496167-1.png"
fix = find(imgBase)
fix.highlight(1)

# get the symbol
rsym = Region(fix.x + fix.w + 8, fix.y + 14, 35, 35)
symbol = capture(rsym)
rsym.highlight(1)

# get the surfbar
sbLeft = fix.right().find("1354267650780.png")
sbLeft.highlight(1)

sbHeight = 45
sbWidth = 330
sb = Region(sbLeft.x + 4, sbLeft.y + 3, sbWidth, sbHeight)
sb.highlight(1)

sbMarginTopBottom = 20
sbMarginLeftRight = 20

# setup the regions for the others
numCells = 4
oWidth = (sb.w)/4
other = []
for i in range(numCells):
    x = sb.x + i*oWidth - 4
    other.append(Region(x, sb.y, oWidth+8, sbHeight))
for r in other:
    pass
    r.highlight(1)

found = checkCells(symbol)
if not found: print "not found"; exit(1)
click(found)

#I Need code to repeat this script right here Below

-- 
You received this question notification because you are a member of
Sikuli Drivers, which is an answer contact for Sikuli.