Source: attachInstanceFunctions.js

  1. 'use strict';
  2. const Rac = require('./Rac');
  3. /**
  4. * This namespace lists utility functions attached to an instance of
  5. * `{@link Rac}` during initialization. Each drawable and style class gets
  6. * a corresponding function like [`rac.Point`]{@link instance.Point} or
  7. * [`rac.Color`]{@link instance.Color}.
  8. *
  9. * Drawable and style objects require for construction a reference to a
  10. * `rac` instance in order to perform drawing operations. The attached
  11. * functions build new objects using the calling `Rac` instance.
  12. *
  13. * These functions are also setup with ready-made convenience objects for
  14. * many usual values like [`rac.Angle.north`]{@link instance.Angle#north} or
  15. * [`rac.Point.zero`]{@link instance.Point#zero}.
  16. *
  17. * @namespace instance
  18. */
  19. // Attaches the convenience functions to create objects with this instance
  20. // of Rac. These functions are attached as properties (instead of into the
  21. // prototype) because these are later populated with more properties and
  22. // methods, and thus need to be independent for each instance.
  23. //
  24. // Intended to receive the a Rac instance as parameter.
  25. module.exports = function attachInstanceFunctions(rac) {
  26. /**
  27. * Convenience function that creates a new `Color` setup with `this`.
  28. *
  29. * The function also contains additional methods and properties listed in
  30. * `{@link instance.Color}`.
  31. *
  32. * @param {number} r
  33. * @param {number} g
  34. * @param {number} b
  35. * @param {number=} a
  36. *
  37. * @returns {Rac.Color}
  38. *
  39. * @see instance.Color
  40. *
  41. * @function Color
  42. * @memberof Rac#
  43. */
  44. rac.Color = function makeColor(r, g, b, a = 1) {
  45. return new Rac.Color(this, r, g, b, a);
  46. };
  47. /**
  48. * Convenience function that creates a new `Stroke` setup with `this`.
  49. *
  50. * The function also contains additional methods and properties listed in
  51. * `{@link instance.Stroke}`.
  52. *
  53. * @param {?number} weight
  54. * @param {?Rac.Color} color
  55. *
  56. * @returns {Rac.Stroke}
  57. *
  58. * @see instance.Stroke
  59. *
  60. * @function Stroke
  61. * @memberof Rac#
  62. */
  63. rac.Stroke = function makeStroke(weight, color = null) {
  64. return new Rac.Stroke(this, weight, color);
  65. };
  66. /**
  67. * Convenience function that creates a new `Fill` setup with `this`.
  68. *
  69. * The function also contains additional methods and properties listed in
  70. * `{@link instance.Fill}`.
  71. *
  72. * @param {Rac.Color=} color
  73. * @returns {Rac.Fill}
  74. *
  75. * @see instance.Fill
  76. *
  77. * @function Fill
  78. * @memberof Rac#
  79. */
  80. rac.Fill = function makeFill(color = null) {
  81. return new Rac.Fill(this, color);
  82. };
  83. /**
  84. * Convenience function that creates a new `Style` setup with `this`.
  85. *
  86. * The function also contains additional methods and properties listed in
  87. * `{@link instance.Style}`.
  88. *
  89. * @param {?Rac.Stroke} stroke
  90. * @param {?Rac.Fill} fill
  91. *
  92. * @returns {Rac.Style}
  93. *
  94. * @see instance.Style
  95. *
  96. * @function Style
  97. * @memberof Rac#
  98. */
  99. rac.Style = function makeStyle(stroke = null, fill = null) {
  100. return new Rac.Style(this, stroke, fill);
  101. };
  102. /**
  103. * Convenience function that creates a new `Angle` setup with `this`.
  104. *
  105. * The function also contains additional methods and properties listed in
  106. * `{@link instance.Angle}`.
  107. *
  108. * @param {number} turn - The turn value of the angle, in the range `[O,1)`
  109. * @returns {Rac.Angle}
  110. *
  111. * @see instance.Angle
  112. *
  113. * @function Angle
  114. * @memberof Rac#
  115. */
  116. rac.Angle = function makeAngle(turn) {
  117. return new Rac.Angle(this, turn);
  118. };
  119. /**
  120. * Convenience function that creates a new `Point` setup with `this`.
  121. *
  122. * The function also contains additional methods and properties listed in
  123. * `{@link instance.Point}`.
  124. *
  125. * @param {number} x - The x coordinate
  126. * @param {number} y - The y coordinate
  127. *
  128. * @returns {Rac.Point}
  129. *
  130. * @see instance.Point
  131. *
  132. * @function Point
  133. * @memberof Rac#
  134. */
  135. rac.Point = function makePoint(x, y) {
  136. return new Rac.Point(this, x, y);
  137. };
  138. /**
  139. * Convenience function that creates a new `Ray` setup with `this`.
  140. *
  141. * The function also contains additional methods and properties listed in
  142. * `{@link instance.Ray}`.
  143. *
  144. * @param {number} x
  145. * @param {number} y
  146. * @param {Rac.Angle|number} angle
  147. *
  148. * @returns {Rac.Ray}
  149. *
  150. * @see instance.Ray
  151. *
  152. * @function Ray
  153. * @memberof Rac#
  154. */
  155. rac.Ray = function makeRay(x, y, angle) {
  156. const start = new Rac.Point(this, x, y);
  157. angle = Rac.Angle.from(this, angle);
  158. return new Rac.Ray(this, start, angle);
  159. };
  160. /**
  161. * Convenience function that creates a new `Segment` setup with `this`.
  162. *
  163. * The function also contains additional methods and properties listed in
  164. * `{@link instance.Segment}`.
  165. *
  166. * @param {number} x
  167. * @param {number} y
  168. * @param {Rac.Angle|number} angle
  169. * @param {number} length
  170. *
  171. * @returns {Rac.Segment}
  172. *
  173. * @see instance.Segment
  174. *
  175. * @function Segment
  176. * @memberof Rac#
  177. */
  178. rac.Segment = function makeSegment(x, y, angle, length) {
  179. const start = new Rac.Point(this, x, y);
  180. angle = Rac.Angle.from(this, angle);
  181. const ray = new Rac.Ray(this, start, angle);
  182. return new Rac.Segment(this, ray, length);
  183. };
  184. /**
  185. * Convenience function that creates a new `Arc` setup with `this`.
  186. *
  187. * The function also contains additional methods and properties listed in
  188. * `{@link instance.Arc}`.
  189. *
  190. * @param {number} x - The _x_ coordinate for the arc center
  191. * @param {number} y - The _y_ coordinate for the arc center
  192. * @param {Rac.Angle|number} start - The start of the arc
  193. * @param {?Rac.Angle|number} [end=null] - The end of the arc; when
  194. * ommited or set to `null`, `start` is used instead
  195. * @param {boolean} [clockwise=true] The orientation of the arc
  196. *
  197. * @returns {Rac.Arc}
  198. *
  199. * @see instance.Arc
  200. *
  201. * @function Arc
  202. * @memberof Rac#
  203. */
  204. rac.Arc = function makeArc(x, y, radius, start = this.Angle.zero, end = null, clockwise = true) {
  205. const center = new Rac.Point(this, x, y);
  206. start = Rac.Angle.from(this, start);
  207. end = end === null
  208. ? start
  209. : Rac.Angle.from(this, end);
  210. return new Rac.Arc(this, center, radius, start, end, clockwise);
  211. };
  212. /**
  213. * Convenience function that creates a new `Text` setup with `this`.
  214. *
  215. * The function also contains additional methods and properties listed in
  216. * `{@link instance.Text}`.
  217. *
  218. * @param {number} x - The x coordinate location for the drawn text
  219. * @param {number} y - The y coordinate location for the drawn text
  220. * @param {string} string - The string to draw
  221. * @param {Rac.Text.Format} format - The format for the drawn text
  222. *
  223. * @returns {Rac.Text}
  224. *
  225. * @see instance.Text
  226. *
  227. * @function Text
  228. * @memberof Rac#
  229. */
  230. rac.Text = function makeText(x, y, string, format = this.Text.Format.topLeft) {
  231. const point = new Rac.Point(this, x, y);
  232. return new Rac.Text(this, point, string, format);
  233. };
  234. /**
  235. * Convenience function that creates a new `Text.Format` setup with `this`.
  236. *
  237. * The function also contains additional methods and properties listed in
  238. * `{@link instance.Text.Format}`.
  239. *
  240. * @param {string} hAlign - The horizontal alignment, left-to-right; one
  241. * of the values from [`horizontalAlign`]{@link Rac.Text.Format.horizontalAlign}
  242. * @param {string} vAlign - The vertical alignment, top-to-bottom; one of
  243. * the values from [`verticalAlign`]{@link Rac.Text.Format.verticalAlign}
  244. * @param {Rac.Angle} [angle=[rac.Angle.zero]{@link instance.Angle#zero}]
  245. * The angle towards which the text is drawn
  246. * @param {string} [font=null] - The font name
  247. * @param {number} [size=null] - The font size
  248. *
  249. * @returns {Rac.Text.Format}
  250. *
  251. * @see instance.Text.Format
  252. *
  253. * @function Format
  254. * @memberof instance.Text#
  255. */
  256. rac.Text.Format = function makeTextFormat(
  257. hAlign,
  258. vAlign,
  259. angle = rac.Angle.zero,
  260. font = null,
  261. size = null)
  262. {
  263. // This functions uses `rac` instead of `this`, since `this` points to
  264. // `rac.Text` here and to `rac` in the `TextFormat` alias
  265. angle = Rac.Angle.from(rac, angle);
  266. return new Rac.Text.Format(
  267. rac,
  268. hAlign, vAlign,
  269. angle, font, size);
  270. };
  271. /**
  272. * Alias of [`rac.Text.Format`]{@link instance.Text#Format}.
  273. *
  274. * To display in documentation along the rest of
  275. * [utility instance functions]{@link instance}.
  276. *
  277. * @function TextFormat
  278. * @memberof Rac#
  279. */
  280. rac.TextFormat = rac.Text.Format;
  281. /**
  282. * Convenience function that creates a new `Bezier` setup with `this`.
  283. *
  284. * The function also contains additional methods and properties listed in
  285. * `{@link instance.Bezier}`.
  286. *
  287. * @param {number} startX
  288. * @param {number} startY
  289. * @param {number} startAnchorX
  290. * @param {number} startAnchorY
  291. * @param {number} endAnchorX
  292. * @param {number} endAnchorY
  293. * @param {number} endX
  294. * @param {number} endY
  295. *
  296. * @returns {Rac.Bezier}
  297. *
  298. * @see instance.Bezier
  299. *
  300. * @function Bezier
  301. * @memberof Rac#
  302. */
  303. rac.Bezier = function makeBezier(
  304. startX, startY, startAnchorX, startAnchorY,
  305. endAnchorX, endAnchorY, endX, endY)
  306. {
  307. const start = new Rac.Point(this, startX, startY);
  308. const startAnchor = new Rac.Point(this, startAnchorX, startAnchorY);
  309. const endAnchor = new Rac.Point(this, endAnchorX, endAnchorY);
  310. const end = new Rac.Point(this, endX, endY);
  311. return new Rac.Bezier(this, start, startAnchor, endAnchor, end);
  312. };
  313. }; // attachInstanceFunctions