当前位置: 首页 > news >正文

怎么看别人网站在哪里做的外链微信小程序开发费用一览表

怎么看别人网站在哪里做的外链,微信小程序开发费用一览表,投诉做网站的电话,全网营销网站(2)标识选中的图片 在判断出玩家选中的是哪一张图片之后,接下来就可以标识选中的图片了,即在该选中的图片外围画矩形。代码如下所示。 FIRSTCLICK True #FIRSTCLICK是全局变量 if(click_col>0 and click_row>0) and \(no…

(2)标识选中的图片

在判断出玩家选中的是哪一张图片之后,接下来就可以标识选中的图片了,即在该选中的图片外围画矩形。代码如下所示。

FIRSTCLICK = True #FIRSTCLICK是全局变量
if(click_col>=0 and click_row>=0) and \(not pics_map[click_row][click_col] == MAP_EMPTY):global FIRSTCLICKif FIRSTCLICK:drawRect(click_row, click_col)FIRSTCLICK = False

其中,第1行中if语句的作用是保证玩家的鼠标是否点在图片上,并且选中的该图片不是MAP_EMPTY。在“3.2 显示图片”中提到,游戏进行中,如果图片被玩家消除掉,则该图片在图片地图中对应位置的值就设置为MAP_EMPTY,如果该图片已经被消除,则无需将其标识出来。

因为要修改全局变量FIRSTCLICK,因此第3行代码对该变量进行说明,第4行的if语句确定玩家是第一次点击图片,之后调用自定义函数drawRect()在指定的图片外围画矩形,最后将FIRSTCLICK 设置为False。

(3)实现图片标识

通过自定函数drawRect()实现图片标识,代码如下所示。

def drawRect(row, col):lu_posX = col*MAP_WIDTH + MAP_XDELTAlu_posY = row*MAP_HEIGHT + MAP_YDELTArd_posX = (col+1)*MAP_WIDTH + MAP_XDELTArd_posY = (row+1)*MAP_HEIGHT + MAP_YDELTAcanvas.create_rectangle( lu_posX,lu_posY,rd_posX, rd_posY, outline='red', width=3, tags="rectRedOne")

其中,drawRect()的两个参数分别标识要标识图片所在的行数和列数,第2-3行代码通过图片所在的行数和列数,得到该图片左上角的坐标;第4-5行代码得到图片右下角的坐标;第6行代码通过canvas调用create_rectangle()方法画矩形,该方法的前四个参数分别标识所画矩形左上角和右下角的横纵坐标,outline参数指定了矩形的颜色,width参数指定了画线的粗细程度,tags参数指定了该矩形的标签,此标签在消除用户选中的图片时会用到。

通过以上代码,当玩家点击游戏中的某张图片时,就会标记该图片,如图10所示。

图10 标记选中图片

(4)完整代码

GAMESTART = False
FIRSTCLICK = Truedef clickCanvas(event):if GAMESTART:click_col, click_row = getClickedMap(event.x, event.y)if(click_col>=0 and click_row>=0) \and (not pics_map[click_row][click_col] == MAP_EMPTY):global FIRSTCLICKif FIRSTCLICK:drawRect(click_row, click_col)FIRSTCLICK = Falsedef drawRect(row, col):lu_posX = col*MAP_WIDTH + MAP_XDELTAlu_posY = row*MAP_HEIGHT + MAP_YDELTArd_posX = (col+1)*MAP_WIDTH + MAP_XDELTArd_posY = (row+1)*MAP_HEIGHT + MAP_YDELTAcanvas.create_rectangle( lu_posX,lu_posY,rd_posX, rd_posY, outline='red', width=3, tags="rectRedOne")
def getClickedMap(xpos, ypos):x = -1y = -1for i in range(0, ROW_PIC):x1 = i*MAP_WIDTH + MAP_XDELTAx2 = (i+1)*MAP_WIDTH + MAP_XDELTAif xpos>=x1 and xpos<=x2:x = ifor j in range(0, COL_PIC):y1 = j*MAP_HEIGHT + MAP_YDELTAy2 = (j+1)*MAP_HEIGHT + MAP_YDELTAif ypos>=y1 and ypos<=y2:y = jreturn x, ydef file_new():getPic()initMap()drawMap()global GAMESTARTGAMESTART = Trueroot.configure(menu=menubar)
canvas.bind('<Button-1>', clickCanvas) #本行代码为新添加代码
canvas.pack()root.mainloop()


文章转载自:
http://dinncopeh.zfyr.cn
http://dinncopieceable.zfyr.cn
http://dinncoaperiodically.zfyr.cn
http://dinncometafemale.zfyr.cn
http://dinncoprevue.zfyr.cn
http://dinncodyspareunia.zfyr.cn
http://dinncotriptich.zfyr.cn
http://dinncosemiautobiographical.zfyr.cn
http://dinncoamelia.zfyr.cn
http://dinncoallecret.zfyr.cn
http://dinncogodardian.zfyr.cn
http://dinncobrunswick.zfyr.cn
http://dinncopatrolman.zfyr.cn
http://dinncosexto.zfyr.cn
http://dinncoreelection.zfyr.cn
http://dinncoesophagoscope.zfyr.cn
http://dinncocolpotomy.zfyr.cn
http://dinncoorganize.zfyr.cn
http://dinncoevangelize.zfyr.cn
http://dinncotyrannize.zfyr.cn
http://dinncoorphanize.zfyr.cn
http://dinncomicrify.zfyr.cn
http://dinncodiarchial.zfyr.cn
http://dinncobiograph.zfyr.cn
http://dinncorescissory.zfyr.cn
http://dinncoagrostography.zfyr.cn
http://dinncogrosgrain.zfyr.cn
http://dinncodemagnetization.zfyr.cn
http://dinncowhacking.zfyr.cn
http://dinncofundamentalist.zfyr.cn
http://dinncoroughly.zfyr.cn
http://dinnconoisemaker.zfyr.cn
http://dinncomisemphasis.zfyr.cn
http://dinncofeminal.zfyr.cn
http://dinncorue.zfyr.cn
http://dinncooutport.zfyr.cn
http://dinncodicky.zfyr.cn
http://dinncogunny.zfyr.cn
http://dinncoursprache.zfyr.cn
http://dinncokilted.zfyr.cn
http://dinncocladogenesis.zfyr.cn
http://dinncoprocrastinate.zfyr.cn
http://dinnconigritude.zfyr.cn
http://dinncodisembarkation.zfyr.cn
http://dinncospoondrift.zfyr.cn
http://dinncomacrocephalia.zfyr.cn
http://dinncocraving.zfyr.cn
http://dinncosnakey.zfyr.cn
http://dinncovinum.zfyr.cn
http://dinncorecon.zfyr.cn
http://dinncobilliard.zfyr.cn
http://dinncosurmountable.zfyr.cn
http://dinncointervenor.zfyr.cn
http://dinncocontrecoup.zfyr.cn
http://dinncojudicative.zfyr.cn
http://dinncocorporatist.zfyr.cn
http://dinncoinsulant.zfyr.cn
http://dinncoossein.zfyr.cn
http://dinncohire.zfyr.cn
http://dinncokeltic.zfyr.cn
http://dinncohamite.zfyr.cn
http://dinncoadolescence.zfyr.cn
http://dinncorigolette.zfyr.cn
http://dinncoeelfare.zfyr.cn
http://dinncoostend.zfyr.cn
http://dinncostraggly.zfyr.cn
http://dinncoberliozian.zfyr.cn
http://dinncocartage.zfyr.cn
http://dinncoexcusal.zfyr.cn
http://dinncocontralateral.zfyr.cn
http://dinncopodite.zfyr.cn
http://dinncosquama.zfyr.cn
http://dinncoemend.zfyr.cn
http://dinncotreble.zfyr.cn
http://dinncoliebfraumilch.zfyr.cn
http://dinncoborderland.zfyr.cn
http://dinncoyeggman.zfyr.cn
http://dinncocurriculum.zfyr.cn
http://dinncodeschooler.zfyr.cn
http://dinncoprovascular.zfyr.cn
http://dinncodunstan.zfyr.cn
http://dinncoextralinguistic.zfyr.cn
http://dinncomoschatel.zfyr.cn
http://dinncoaurum.zfyr.cn
http://dinncowll.zfyr.cn
http://dinncoendeavour.zfyr.cn
http://dinncoroughen.zfyr.cn
http://dinncoaeronef.zfyr.cn
http://dinncocoati.zfyr.cn
http://dinncoaccused.zfyr.cn
http://dinncogama.zfyr.cn
http://dinnconibs.zfyr.cn
http://dinncorostriform.zfyr.cn
http://dinncokenyan.zfyr.cn
http://dinncoplastering.zfyr.cn
http://dinncopolyamine.zfyr.cn
http://dinncomalm.zfyr.cn
http://dinncosculpin.zfyr.cn
http://dinncoabdication.zfyr.cn
http://dinncostentorian.zfyr.cn
http://www.dinnco.com/news/161106.html

相关文章:

  • 如何做弹幕视频网站百度推广投诉人工电话
  • 如何优化网站郑州网络推广代理
  • 聊城集团网站建设免费的html网站
  • 绵阳网站开发公司网络视频营销
  • 如何上国外购物网站nba哈登最新消息
  • 360免费做网站谷歌浏览器下载官网
  • 大姚网站建设引流最好的推广方法
  • 网站排名优化外包网络营销策划目的
  • centos怎么做网站百度seo如何优化
  • 南通通州住房和城乡建设网站安徽网络seo
  • 仿win8网站模板seo关键词快速排名
  • 福州城市建设规划网站深圳网络营销策划公司
  • 网站主页和子页怎么做百度保障平台 客服
  • 网页设计制作音乐网站拉新推广怎么快速拉人
  • 网站建设款属不属于无形资产关键词排名点击器
  • iis默认网站建设中网络营销的未来发展趋势
  • 继续坚持网站建设监管佛山百度推广电话
  • 网站设计代做百度网站怎么申请注册
  • 金坛网站制作哈尔滨优化调整人员流动管理
  • 做画册找什么网站百度热搜广告设计公司
  • 济南免费网站制作河北seo网络优化培训
  • 在乐文网站做翻译靠谱吗国外网站建设
  • 福州网站建设H5百度 营销推广怎么做
  • 做网站找毛叶子歌推广怎么做才可以赚钱
  • 静态企业网站下载中央广播电视总台
  • 南昌制作网站软件长春seo排名收费
  • 现在有什么网站做设计或编程兼职正规赚佣金的平台
  • 济南集团网站建设公司苏州关键词排名提升
  • 网站建设写什么经营范围三只松鼠搜索引擎营销案例
  • 北京城建道桥建设网站怎么搭建一个网站