PolyScreenLine.h 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /*
  2. Copyright (C) 2011 by Ivan Safrin
  3. Permission is hereby granted, free of charge, to any person obtaining a copy
  4. of this software and associated documentation files (the "Software"), to deal
  5. in the Software without restriction, including without limitation the rights
  6. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  7. copies of the Software, and to permit persons to whom the Software is
  8. furnished to do so, subject to the following conditions:
  9. The above copyright notice and this permission notice shall be included in
  10. all copies or substantial portions of the Software.
  11. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  12. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  13. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  14. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  15. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  16. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  17. THE SOFTWARE.
  18. */
  19. #pragma once
  20. #include "PolyGlobals.h"
  21. #include "PolyScreenMesh.h"
  22. namespace Polycode {
  23. class Vertex;
  24. /**
  25. * A 2D line between two points or two ScreenEntity instances.
  26. */
  27. class _PolyExport ScreenLine : public ScreenMesh {
  28. public:
  29. /**
  30. * Create a line between two points.
  31. * @start Starting point.
  32. * @end Enfing point.
  33. */
  34. ScreenLine(Vector2* start, Vector2* end);
  35. /**
  36. * Create a line between two entities. It's automatically updated every frame to follow the entities.
  37. * @target1 Starting target.
  38. * @target2 Ending target.
  39. */
  40. ScreenLine(ScreenEntity* target1, ScreenEntity* target2);
  41. virtual ~ScreenLine();
  42. void Update();
  43. void Render();
  44. /**
  45. * Sets the line width.
  46. * @param width New line width.
  47. */
  48. void setLineWidth(Number width);
  49. protected:
  50. void initMesh();
  51. Number lineWidth;
  52. Vertex *startVertex;
  53. Vertex *endVertex;
  54. ScreenEntity *target1;
  55. ScreenEntity *target2;
  56. };
  57. }