pastebin - collaborative debugging tool
kpaste.net RSS


Weathertool
Posted by Anonymous on Fri 4th Jun 2010 04:49
raw | new post

  1. ;Desktop weather tool - http://www.autohotkey.com/forum/viewtopic.php?t=58716
  2. ;Weather tool from google api v0.95
  3. ;By bekihito
  4. SetBatchLines, -1
  5. #SingleInstance, Force
  6. #NoEnv
  7. SetWorkingDir %A_ScriptDir%
  8. ;reading the start location from ini file or taking defaults
  9. IniRead ,place, location.ini, locat, place,Zagreb  
  10. IniRead ,cntr, location.ini, locat, cntr, Hr
  11. IniRead, Xwin, location.ini, position,Xwin
  12. IniRead, Ywin, location.ini, position,Ywin
  13. IniRead, trans, location.ini, position,trans,255
  14. Menu,Tray, nostandard
  15. Menu,Tray, Add, Change Location, Location
  16. Menu,Tray, Add, Update weather, Update
  17. Menu,Tray, Add, About,  About
  18. Menu,Tray, Add
  19. Menu,Tray, Add, Exit, GuiClose
  20. Gosub ,download
  21. ;changing the transparency and always on top
  22. !1::
  23. IfWinExist,Weather
  24. {
  25. trans :=255
  26. Gui, Submit,Nohide
  27. WinSet ,Transparent ,%trans%, Weathertool
  28. }
  29. !2::
  30. IfWinExist,Weather
  31. {
  32. trans :=180
  33. Gui, Submit,Nohide
  34. WinSet ,Transparent ,%trans%, Weathertool
  35. }
  36. !3::
  37. IfWinExist,Weather
  38. {
  39. trans :=90
  40. Gui, Submit,Nohide
  41. WinSet ,Transparent ,%trans%, Weathertool
  42. }
  43. !4::
  44. IfWinExist,Weather
  45. {
  46.   WinGet, ExStyle, ExStyle, Weathertool
  47.   if (ExStyle & 0x8)  ; 0x8 is WS_EX_TOPMOST.
  48.     {
  49.       Winset, AlwaysOnTop, off, Weathertool
  50.     }
  51.     else
  52.     {
  53.       WinSet, AlwaysOnTop, on, Weathertool
  54.     }
  55. }
  56. ;gui, showing the data
  57. GuiShow:
  58. Gui,  +Owner +Owndialogs +ToolWindow
  59. Gui, Font, S12 CDefault, Arial bold
  60. Gui, Add, Text, x5 y5 h20 w200 Center, %City%
  61. ;Gui, Add, Edit, x5 y5 h20 w200 ReadOnly, %City%
  62. Gui Add , Pic , x5 y40 h70 w70, visual.gif
  63. Gui, Font, S8 CDefault, Arial bold
  64. Gui Add , Text , x85 y35 h14 w150, Date:%Forecastdate%
  65. Gui Add , Text , x85 y50 h14 w150, %Condition%
  66. Gui Add , Text , x85 y65 h14 w150, Temperature: %tempf%¦F/%tempc%¦C
  67. Gui Add , Text , x85 y80 h14 w150, %humidity%
  68. Gui Add , Text , x85 y95 h14 w150, %windcondition%
  69. ;Today
  70. Gui, Font, S8 CDefault, Arial bold
  71. Gui Add , Text, x5 y125 h12 w60 center, %day_of_week1%
  72. Gui Add , Pic , x15 y140 h40 w40, visual1.gif
  73. Gui, Font, S6 CDefault, Arial
  74. Gui Add , Text , x5 y190 h12 w60, %condition1%
  75. Gui Add , Text , x5 y202 h14 w60, High:%High1%¦F/%temphigh1%¦C
  76. Gui Add , Text , x5 y214 h14 w60, Low:%low1%¦F/%templow1%¦C
  77. ;Tomorrow
  78. Gui, Font, S8 CDefault, Arial bold
  79. Gui Add , Text, x90 y125 h12 w60 center, %day_of_week2%
  80. Gui Add , Pic , x100 y140 h40 w40, visual2.gif
  81. Gui, Font, S6 CDefault, Arial
  82. Gui Add , Text , x90 y190 h12 w60, %condition2%
  83. Gui Add , Text , x90 y202 h14 w60, High:%High2%¦F/%temphigh2%¦C
  84. Gui Add , Text , x90 y214 h14 w60, Low:%low2%¦F/%templow2%¦C
  85. ;Day after Tomorrow
  86. Gui, Font, S8 CDefault, Arial bold
  87. Gui Add , Text, x175 y125 h12 w60 center, %day_of_week3%
  88. Gui Add , Pic , x185 y140 h40 w40, visual3.gif
  89. Gui, Font, S6 CDefault, Arial
  90. Gui Add , Text , x175 y190 h12 w60, %condition3%
  91. Gui Add , Text , x175 y202 h14 w60, High:%High3%¦F/%temphigh3%¦C
  92. Gui Add , Text , x175 y214 h14 w60, Low:%low3%¦F/%templow3%¦C
  93. ;Two days from now
  94. Gui, Font, S8 CDefault, Arial bold
  95. Gui Add , Text, x260 y125 h12 w60 center, %day_of_week4%
  96. Gui Add , Pic , x270 y140 h40 w40, visual4.gif
  97. Gui, Font, S6 CDefault, Arial
  98. Gui Add , Text , x260 y190 h12 w60, %condition4%
  99. Gui Add , Text , x260 y202 h14 w60, High:%High4%¦F/%temphigh4%¦C
  100. Gui Add , Text , x260 y214 h14 w60, Low:%low4%¦F/%templow4%¦C
  101. ;Action Buttons
  102. Gui, Font, S10 CDefault, Arial bold
  103. Gui Add, Button, x225 y5 w100 h40 gLocation, Change location
  104. Gui Add, Button, x225 y50 w100 h40 gUpdate, Update weather
  105. Gui Add, Button, x225 y95 w100 h20 gAbout, About
  106. Gui,  +Owndialogs
  107. Gui, Show, w330 h250 x%Xwin% y%Ywin%, Weathertool
  108. WinSet ,Transparent ,%trans%, Weathertool
  109. download:
  110. ;downloading the xml file from google weather api
  111. locat=%place%,%cntr%
  112. URLDownloadToFile,http://www.google.com/ig/api?weather=%locat%, %A_ScriptDir%\weather.xml
  113. /*
  114. parsing the data from google api xml file
  115. unfortunatelly the data is set to attributes value rather then text value so some additional triming is needed
  116. */
  117. xpath_load(XML, "weather.xml")
  118. City:= Xpath(XML, "/xml_api_reply/weather/forecast_information/city")
  119. blah=&#44
  120. StringTrimLeft , City , City, 12
  121. StringTrimRight , City, City, 9
  122. StringReplace ,City, City, %blah%
  123. Postal:= Xpath(XML, "/xml_api_reply/weather/forecast_information/postal_code")
  124. bla=#44
  125. StringTrimLeft , Postal , Postal, 19
  126. StringTrimRight , Postal, Postal,16
  127. StringReplace ,Postal, Postal, %bla%
  128. ;weather at the moment
  129. Forecastdate:= Xpath(XML, "/xml_api_reply/weather/forecast_information/forecast_date")
  130. StringTrimLeft , Forecastdate , Forecastdate, 21
  131. StringTrimRight , Forecastdate,Forecastdate,18
  132. Condition:= Xpath(XML, "/xml_api_reply/weather/current_conditions/condition")
  133. StringTrimLeft , Condition , Condition, 17
  134. StringTrimRight , Condition,Condition,14
  135. tempf:= Xpath(XML, "/xml_api_reply/weather/current_conditions/temp_f")
  136. StringTrimLeft , tempf , tempf, 14
  137. StringTrimRight , tempf,tempf,11
  138. tempc:= Xpath(XML, "/xml_api_reply/weather/current_conditions/temp_c")
  139. StringTrimLeft , tempc , tempc, 14
  140. StringTrimRight , tempc,tempc,11
  141. humidity:= Xpath(XML, "/xml_api_reply/weather/current_conditions/humidity")
  142. StringTrimLeft , humidity , humidity, 16
  143. StringTrimRight , humidity,humidity,13
  144. visual:= Xpath(XML, "/xml_api_reply/weather/current_conditions/icon")
  145. StringTrimLeft , visual ,visual, 12
  146. StringTrimRight , visual , visual,9
  147. windcondition:= Xpath(XML, "/xml_api_reply/weather/current_conditions/wind_condition")
  148. StringTrimLeft , windcondition ,windcondition, 22
  149. StringTrimRight , windcondition , windcondition, 19
  150.  
  151. ;weather forecast for today and 3 days ahead
  152. loop, {
  153.   day_of_week%A_Index% := xpath(XML, "/xml_api_reply/weather/forecast_conditions[" . A_Index . "]/day_of_week")
  154.   StringTrimLeft , day_of_week%A_Index% ,day_of_week%A_Index%, 19
  155.   StringTrimRight , day_of_week%A_Index% , day_of_week%A_Index%, 16
  156.   low%A_Index% := xpath(XML, "/xml_api_reply/weather/forecast_conditions[" . A_Index . "]/low")
  157.   StringTrimLeft , low%A_Index% ,low%A_Index%, 11
  158.   StringTrimRight , low%A_Index% , low%A_Index%, 8
  159.   high%A_Index% := xpath(XML, "/xml_api_reply/weather/forecast_conditions[" . A_Index . "]/high")
  160.   StringTrimLeft ,  high%A_Index% , high%A_Index%, 12
  161.   StringTrimRight ,  high%A_Index% ,  high%A_Index%, 9
  162.   visual%A_Index% := xpath(XML, "/xml_api_reply/weather/forecast_conditions[" . A_Index . "]/icon")
  163.   StringTrimLeft , visual%A_Index% ,visual%A_Index%, 12
  164.   StringTrimRight , visual%A_Index% , visual%A_Index%, 9
  165.   condition%A_Index% := xpath(XML, "/xml_api_reply/weather/forecast_conditions[" . A_Index . "]/condition")
  166.   StringTrimLeft , condition%A_Index% ,condition%A_Index%, 17
  167.   StringTrimRight , condition%A_Index% , condition%A_Index%, 14
  168.   ;calculation of Farenheit to Celsius
  169.   SetFormat ,float, 2.1
  170.   templow%A_Index% :=(low%A_Index%-32)*5/9
  171.   temphigh%A_Index%:=(high%A_Index%-32)*5/9
  172.   if !day_of_week%A_Index%
  173.    Break
  174. }
  175. ;weather represented in a visual manner
  176. Urldownloadtofile , http://www.google.com/%visual%, visual.gif
  177. Urldownloadtofile , http://www.google.com/%visual1%, visual1.gif
  178. Urldownloadtofile , http://www.google.com/%visual2%, visual2.gif
  179. Urldownloadtofile , http://www.google.com/%visual3%, visual3.gif
  180. Urldownloadtofile , http://www.google.com/%visual4%, visual4.gif
  181. Gui, Submit, NoHide
  182. Gosub GuiShow
  183. ;change location
  184. Location:
  185. Gui,  +Owner +Owndialogs +ToolWindow
  186. WinGetPos,Xwin,Ywin,,,Weathertool
  187. InputBox ,place,New town, , , 100,100,Xwin+90,Ywin+50
  188. InputBox ,cntr,New country, , , 100, 100,Xwin+90,Ywin+50
  189. Gui, Submit,No Hide
  190. If (place=""){
  191.   IniRead ,place, Location.ini, Locat, place
  192.   }
  193. Gui, Submit,No Hide
  194.  
  195. @@;Replace space with +
  196. @@IfInString, place, %A_Space%
  197. @@  StringReplace, place, place, %A_Space%, +, All
  198.  
  199. IniWrite ,%place%, Location.ini, Locat, place
  200. IniWrite ,%cntr%, Location.ini, Locat, cntr
  201. Gosub , download
  202. ;update current weather
  203. Update:
  204. @@IniRead ,place, Location.ini, Locat, place
  205. @@IniRead ,cntr, Location.ini, Locat, cntr
  206. Gosub, download
  207. About:
  208. Gui ,  +Owner +Owndialogs +ToolWindow
  209. Gui 2: +Toolwindow
  210. Gui 2:add ,Text, x5 y5 w195 h15 center, WeatherTool v0.95
  211. Gui 2:add ,Text, x5 y20 w195 h15 center, Copyright Bekihito,May 2010
  212. Gui 2:add ,Text, x5 y40 w195 h15 , Change location: doh!
  213. Gui 2:add ,Text, x5 y55 w195 h15 , Update weather: Update current weather
  214. Gui 2:add ,Text, x5 y70 w195 h15 , Alt+1,2,3: Change transparency
  215. Gui 2:add ,Text, x5 y85 w195 h15 , Alt+4: Toggle AlwaysOnTop
  216. ;Gui 2:Show , x%Xwin%+90 y%Ywin%+50 w205 h105,About
  217. Xwin2:=Xwin+350
  218. Gui 2:Show , x%Xwin2% y%Ywin%+50 w205 h105,About
  219. ;Gui, Show, w330 h250 x%Xwin% y%Ywin%, Weathertool
  220.  
  221. GuiClose:
  222. WinGetPos,Xwin,Ywin,,,Weathertool
  223. Gui, Submit, NoHide
  224. IniWrite, %Xwin%, location.ini, position,Xwin
  225. IniWrite, %Ywin%, location.ini, position,Ywin
  226. IniWrite, %trans%, location.ini, position,trans
  227. ExitApp

Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.

Syntax highlighting:

To highlight particular lines, prefix each line with {%HIGHLIGHT}




All content is user-submitted.
The administrators of this site (kpaste.net) are not responsible for their content.
Abuse reports should be emailed to us at