xiaohuangren.txt 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369
  1. --小黄人
  2. if 文件是否存在(语录)==false then 写入文件(语录,"每教好一个孩子,就减少一个败类。——雨果") end
  3. layout={
  4. LinearLayout,
  5. orientation="vertical",
  6. layout_width="fill",
  7. layout_height="fill",
  8. {
  9. TextView,
  10. textSize="18dp",
  11. id="tt",
  12. gravity="top|center";
  13. text=model_time,
  14. layout_marginTop="65dp";
  15. padding="30dp",
  16. layout_width="fill",
  17. layout_height="fill",
  18. },
  19. }
  20. require "import"
  21. import "android.app.*"
  22. import "android.os.*"
  23. import "android.widget.*"
  24. import "android.view.*"
  25. import "android.widget.LinearLayout"
  26. import "android.widget.TextView"
  27. import "android.graphics.SweepGradient"
  28. import "com.androlua.LuaDrawable"
  29. import "android.graphics.RectF"
  30. import "android.graphics.DashPathEffect"
  31. import "android.graphics.Color"
  32. import "android.graphics.Path"
  33. import "android.graphics.CornerPathEffect"
  34. --activity.setTitle('AndroLua+')
  35. --activity.setTheme(android.R.style.Theme_Holo_Light)
  36. activity.setContentView(loadlayout(layout))
  37. --[[
  38. 参见:
  39. http://m.open-open.com/m/lib/view/1453336049620.html
  40. ]]
  41. bg=LuaDrawable(function(c,p,d)
  42. bodyWidth = Math.min(activity.getWidth(), activity.getHeight() * 0.6) * 0.6;
  43. bodyHeigh = Math.min(activity.getWidth(), activity.getHeight() * 0.6) / 0.6 * 0.6;
  44. mStrokeWidth=4;
  45. mStrokeWidth = Math.max(bodyWidth / 50, mStrokeWidth);
  46. offset = mStrokeWidth / 2;
  47. colorStroke=Color.BLACK;
  48. colorClothes=Color.YELLOW
  49. colorBody=Color.rgb(249, 217, 70);
  50. b = RectF();
  51. b.left = (activity.getWidth() - bodyWidth) / 2;
  52. b.top = (activity.getHeight() - bodyHeigh) / 2;
  53. b.right = b.left + bodyWidth;
  54. b.bottom = b.top + bodyHeigh;
  55. radius = bodyWidth / 2;
  56. footHeigh = radius * 0.4333;
  57. handsHeight = (activity.getHeight() + bodyHeigh) / 2 + offset - radius * 1.65;
  58. -- Color.rgb(32, 116, 160)
  59. p.setColor(Color.YELLOW);
  60. p.setAntiAlias(true);
  61. p.setStyle(p.Style.FILL);
  62. p.setStrokeWidth(4);
  63. --画身体
  64. c.drawRoundRect(b, radius, radius, p);
  65. --身体后面的描边
  66. p.setColor(0xff000000);
  67. p.setStrokeWidth(mStrokeWidth);
  68. p.setStyle(p.Style.STROKE);
  69. c.drawRoundRect(b, radius, radius, p);
  70. --穿上裤子
  71. rect = RectF();
  72. rect.left = (activity.getWidth() - bodyWidth) / 2 + offset;
  73. rect.top = (activity.getHeight() + bodyHeigh) / 2 - radius * 2 + offset;
  74. rect.right = rect.left + bodyWidth - offset * 2;
  75. rect.bottom = rect.top + radius * 2 - offset * 2;
  76. p.setColor(Color.rgb(32, 116, 160));
  77. p.setStyle(p.Style.FILL);
  78. p.setStrokeWidth(mStrokeWidth);
  79. c.drawArc(rect, 0, 180, true, p)
  80. --
  81. local h = radius * 0.5;
  82. local w = radius * 0.3;
  83. rect.left = rect.left + w;
  84. rect.top = rect.top + radius - h;
  85. rect.right = rect.right - w;
  86. rect.bottom = rect.top + h;
  87. c.drawRect(rect, p);
  88. -- //画横线
  89. p.setColor(Color.BLACK);
  90. p.setStyle(p.Style.FILL);
  91. p.setStrokeWidth(mStrokeWidth);
  92. pts = float[20];--5条线
  93. pts[0] = rect.left - w;
  94. pts[1] = rect.top + h;
  95. pts[2] = pts[0] + w;
  96. pts[3] = pts[1];
  97. pts[4] = pts[2];
  98. pts[5] = pts[3] + offset;
  99. pts[6] = pts[4];
  100. pts[7] = pts[3] - h;
  101. pts[8] = pts[6] - offset;
  102. pts[9] = pts[7];
  103. pts[10] = pts[8] + (radius - w) * 2;
  104. pts[11] = pts[9];
  105. pts[12] = pts[10];
  106. pts[13] = pts[11] - offset;
  107. pts[14] = pts[12];
  108. pts[15] = pts[13] + h;
  109. pts[16] = pts[14] - offset;
  110. pts[17] = pts[15];
  111. pts[18] = pts[16] + w;
  112. pts[19] = pts[17];
  113. c.drawLines(pts, p);
  114. --吊带
  115. --画左吊带
  116. p.setColor(Color.rgb(32, 116, 160));
  117. p.setStrokeWidth(mStrokeWidth);
  118. p.setStyle(p.Style.FILL);
  119. path = Path();
  120. path.moveTo(rect.left - w - offset, handsHeight);
  121. path.lineTo(rect.left + h / 4, rect.top + h / 2);
  122. local smallW = w / 2 * Math.sin(Math.PI / 4);
  123. path.lineTo(rect.left + h / 4 + smallW, rect.top + h / 2 - smallW);
  124. local smallW2 = w / Math.sin(Math.PI / 4) / 2;
  125. path.lineTo(rect.left - w - offset, handsHeight - smallW2);
  126. c.drawPath(path, p);
  127. p.setColor(colorStroke);
  128. p.setStrokeWidth(mStrokeWidth);
  129. p.setStyle(p.Style.STROKE);
  130. c.drawPath(path, p);
  131. p.setStyle(p.Style.FILL_AND_STROKE);
  132. c.drawCircle(rect.left + h / 4, rect.top + h / 4, mStrokeWidth, p);
  133. --画右吊带
  134. p.setColor(colorClothes);
  135. p.setStrokeWidth(mStrokeWidth);
  136. p.setStyle(p.Style.FILL);
  137. path.reset();
  138. path.moveTo(rect.left - w + 2 * radius - offset, handsHeight);
  139. path.lineTo(rect.right - h / 4, rect.top + h / 2);
  140. path.lineTo(rect.right - h / 4 - smallW, rect.top + h / 2 - smallW);
  141. path.lineTo(rect.left - w + 2 * radius - offset, handsHeight- smallW2);
  142. c.drawPath(path, p);
  143. p.setColor(colorStroke);
  144. p.setStrokeWidth(mStrokeWidth);
  145. p.setStyle(p.Style.STROKE);
  146. c.drawPath(path, p);
  147. p.setStyle(p.Style.FILL_AND_STROKE);
  148. c.drawCircle(rect.right - h / 4, rect.top + h / 4, mStrokeWidth, p);
  149. --//中间口袋
  150. p.setColor(colorStroke);
  151. p.setStrokeWidth(mStrokeWidth);
  152. p.setStyle(p.Style.STROKE);
  153. path.reset();
  154. local radiusBigPokect = w / 2.0;
  155. path.moveTo(rect.left + 1.5 * w, rect.bottom - h / 4);
  156. path.lineTo(rect.right - 1.5 * w, rect.bottom - h / 4);
  157. path.lineTo(rect.right - 1.5 * w, rect.bottom + h / 4);
  158. path.addArc(rect.right - 1.5 * w - radiusBigPokect * 2, rect.bottom + h / 4 - radiusBigPokect,
  159. rect.right - 1.5 * w, rect.bottom + h / 4 + radiusBigPokect, 0, 90);
  160. path.lineTo(rect.left + 1.5 * w + radiusBigPokect, rect.bottom + h / 4 + radiusBigPokect);
  161. path.addArc(rect.left + 1.5 * w, rect.bottom + h / 4 - radiusBigPokect,
  162. rect.left + 1.5 * w + 2 * radiusBigPokect, rect.bottom + h / 4 + radiusBigPokect, 90, 90);
  163. path.lineTo(rect.left + 1.5 * w, rect.bottom - h / 4 - offset);
  164. c.drawPath(path, p);
  165. -- 下边一竖,分开裤子
  166. c.drawLine(b.left + bodyWidth / 2, b.bottom - h * 0.8, b.left + bodyWidth / 2, b.bottom, p);
  167. -- 左边的小口袋
  168. local radiusSamllPokect = w * 1.2;
  169. c.drawArc(b.left - radiusSamllPokect, b.bottom - radius - radiusSamllPokect,b.left + radiusSamllPokect, b.bottom - radius + radiusSamllPokect, 80, -60, false, p);
  170. -- 右边小口袋
  171. c.drawArc(b.right - radiusSamllPokect, b.bottom - radius - radiusSamllPokect,b.right + radiusSamllPokect, b.bottom - radius + radiusSamllPokect, 100, 60, false, p);
  172. --画脚
  173. p.setStrokeWidth(mStrokeWidth);
  174. p.setColor(colorStroke);
  175. p.setStyle(p.Style.FILL_AND_STROKE);
  176. local radiusFoot = radius / 3 * 0.4;
  177. local leftFootStartX = b.left + radius - offset * 2;
  178. local leftFootStartY = b.bottom - offset;
  179. local footWidthA = radius * 0.5;--脚宽度大-到半圆结束
  180. local footWidthB = footWidthA / 3;--脚宽度-比较细的部分
  181. -- 左脚
  182. path = Path();
  183. path.moveTo(leftFootStartX, leftFootStartY);
  184. path.lineTo(leftFootStartX, leftFootStartY + footHeigh);
  185. path.lineTo(leftFootStartX - footWidthA + radiusFoot, leftFootStartY + footHeigh);
  186. rectF = RectF();
  187. rectF.left = leftFootStartX - footWidthA;
  188. rectF.top = leftFootStartY + footHeigh - radiusFoot * 2;
  189. rectF.right = rectF.left + radiusFoot * 2;
  190. rectF.bottom = rectF.top + radiusFoot * 2;
  191. path.addArc(rectF, 90, 180);
  192. path.lineTo(rectF.left + radiusFoot + footWidthB, rectF.top);
  193. path.lineTo(rectF.left + radiusFoot + footWidthB, leftFootStartY);
  194. path.lineTo(leftFootStartX, leftFootStartY);
  195. c.drawPath(path, p);
  196. -- 右脚
  197. local rightFootStartX = b.left + radius + offset * 2;
  198. local rightFootStartY = leftFootStartY;
  199. path.reset();
  200. path.moveTo(rightFootStartX, rightFootStartY);
  201. path.lineTo(rightFootStartX, rightFootStartY + footHeigh);
  202. path.lineTo(rightFootStartX + footWidthA - radiusFoot, rightFootStartY + footHeigh);
  203. rectF.left = rightFootStartX + footWidthA - radiusFoot * 2;
  204. rectF.top = rightFootStartY + footHeigh - radiusFoot * 2;
  205. rectF.right = rectF.left + radiusFoot * 2;
  206. rectF.bottom = rectF.top + radiusFoot * 2;
  207. path.addArc(rectF, 90, -180);
  208. path.lineTo(rectF.right - radiusFoot - footWidthB, rectF.top);
  209. path.lineTo(rectF.right - radiusFoot - footWidthB, rightFootStartY);
  210. path.lineTo(rightFootStartX, rightFootStartY);
  211. c.drawPath(path, p);
  212. --画手
  213. p.setStrokeWidth(mStrokeWidth);
  214. p.setStyle(p.Style.FILL);
  215. p.setColor(colorBody);
  216. -- 左手
  217. path = Path();
  218. local hypotenuse = b.bottom - radius - handsHeight;
  219. local radiusHand = hypotenuse / 6;
  220. p.setPathEffect(CornerPathEffect(radiusHand));
  221. path.moveTo(b.left, handsHeight);
  222. path.lineTo(b.left - hypotenuse / 2, handsHeight + hypotenuse / 2);
  223. path.lineTo(b.left, b.bottom - radius);
  224. c.drawPath(path, p);
  225. p.setStrokeWidth(mStrokeWidth);
  226. p.setStyle(p.Style.STROKE);
  227. p.setColor(colorStroke);
  228. c.drawPath(path, p);
  229. -- 右手
  230. path.reset();
  231. p.setStyle(p.Style.FILL);
  232. p.setColor(colorBody);
  233. path.moveTo(b.right, handsHeight);
  234. path.lineTo(b.right + hypotenuse / 2, handsHeight + hypotenuse / 2);
  235. path.lineTo(b.right, b.bottom - radius);
  236. c.drawPath(path, p);
  237. p.setStrokeWidth(mStrokeWidth);
  238. p.setStyle(p.Style.STROKE);
  239. p.setColor(colorStroke);
  240. c.drawPath(path, p);
  241. -- 一个慢动作 - -||| 拐点内侧
  242. path.reset();
  243. p.setStyle(p.Style.FILL);
  244. path.moveTo(b.left, handsHeight + hypotenuse / 2 - mStrokeWidth);
  245. path.lineTo(b.left - mStrokeWidth * 2, handsHeight + hypotenuse / 2 + mStrokeWidth * 2);
  246. path.lineTo(b.left, handsHeight + hypotenuse / 2 + mStrokeWidth);
  247. c.drawPath(path, p);
  248. path.reset();
  249. path.moveTo(b.right, handsHeight + hypotenuse / 2 - mStrokeWidth);
  250. path.lineTo(b.right + mStrokeWidth * 2, handsHeight + hypotenuse / 2 + mStrokeWidth * 2);
  251. path.lineTo(b.right, handsHeight + hypotenuse / 2 + mStrokeWidth);
  252. c.drawPath(path, p);
  253. --眼睛
  254. local eyesOffset = radius * 0.1;--眼睛中心处于上半圆直径 往上的高度偏移
  255. p.setStrokeWidth(mStrokeWidth * 5);
  256. -- 计算眼镜带弧行的半径 分两段,以便眼睛中间有隔开的效果
  257. local radiusGlassesRibbon = radius / Math.sin(Math.PI / 20);
  258. rect = RectF();
  259. rect.left = b.left + radius - radiusGlassesRibbon;
  260. rect.top = b.top + radius - (radius / Math.tan(Math.PI / 20)) - radiusGlassesRibbon - eyesOffset;
  261. rect.right = rect.left + radiusGlassesRibbon * 2;
  262. rect.bottom = rect.top + radiusGlassesRibbon * 2;
  263. c.drawArc(rect, 81, 3, false, p);
  264. c.drawArc(rect, 99, -3, false, p);
  265. --眼睛半径
  266. local radiusEyes = radius / 3;
  267. p.setColor(Color.WHITE);
  268. p.setStrokeWidth(mStrokeWidth);
  269. p.setStyle(p.Style.FILL);
  270. c.drawCircle(b.left + bodyWidth / 2 - radiusEyes - offset, b.top + radius - eyesOffset, radiusEyes, p);
  271. c.drawCircle(b.left + bodyWidth / 2 + radiusEyes + offset, b.top + radius - eyesOffset, radiusEyes, p);
  272. p.setColor(colorStroke);
  273. p.setStyle(p.Style.STROKE);
  274. c.drawCircle(b.left + bodyWidth / 2 - radiusEyes - offset, b.top + radius - eyesOffset, radiusEyes, p);
  275. c.drawCircle(b.left + bodyWidth / 2 + radiusEyes + offset, b.top + radius - eyesOffset, radiusEyes, p);
  276. local radiusEyeballBlack = radiusEyes / 3;
  277. p.setStyle(p.Style.FILL);
  278. c.drawCircle(b.left + bodyWidth / 2 - radiusEyes - offset, b.top + radius - eyesOffset, radiusEyeballBlack, p);
  279. c.drawCircle(b.left + bodyWidth / 2 + radiusEyes + offset, b.top + radius - eyesOffset, radiusEyeballBlack, p);
  280. p.setColor(Color.WHITE);
  281. local radiusEyeballWhite = radiusEyeballBlack / 2;
  282. c.drawCircle(b.left + bodyWidth / 2 - radiusEyes + radiusEyeballWhite - offset * 2,b.top + radius - radiusEyeballWhite + offset - eyesOffset,radiusEyeballWhite, p);
  283. c.drawCircle(b.left + bodyWidth / 2 + radiusEyes + radiusEyeballWhite,b.top + radius - radiusEyeballWhite + offset - eyesOffset,radiusEyeballWhite, p);
  284. --画嘴巴,因为位置和眼睛有相对关系,所以写在一块
  285. p.setColor(colorStroke);
  286. p.setStyle(p.Style.STROKE);
  287. p.setStrokeWidth(mStrokeWidth);
  288. local radiusMonth = radius;
  289. rect.left = b.left;
  290. rect.top = b.top - radiusMonth / 2.5;
  291. rect.right = rect.left + radiusMonth * 2;
  292. rect.bottom = rect.top + radiusMonth * 2;
  293. c.drawArc(rect, 95, -20, false, p);
  294. --脚下影子
  295. p.setColor(activity.getResources().getColor(android.R.color.darker_gray));
  296. c.drawOval(b.left + bodyWidth * 0.15, b.bottom - offset + footHeigh,b.right - bodyWidth * 0.15, b.bottom - offset + footHeigh + mStrokeWidth * 1.3, p);
  297. end)
  298. tt.background=bg
  299. if 文件是否存在(启动图片)==true then 启动时间=读取文件(启动图片) else 启动时间="0" end
  300. task (启动时间*1000,function() 退出页面() end)