OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * Copyright 2010, Google Inc. |
| 3 * All rights reserved. |
| 4 * |
| 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions are |
| 7 * met: |
| 8 * |
| 9 * * Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. |
| 11 * * Redistributions in binary form must reproduce the above |
| 12 * copyright notice, this list of conditions and the following disclaimer |
| 13 * in the documentation and/or other materials provided with the |
| 14 * distribution. |
| 15 * * Neither the name of Google Inc. nor the names of its |
| 16 * contributors may be used to endorse or promote products derived from |
| 17 * this software without specific prior written permission. |
| 18 * |
| 19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 20 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 22 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 23 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 30 */ |
| 31 |
| 32 #ifndef O3D_CORE_CROSS_PROCESSED_PATH_H_ |
| 33 #define O3D_CORE_CROSS_PROCESSED_PATH_H_ |
| 34 |
| 35 #include "core/cross/object_base.h" |
| 36 #include "core/cross/gpu2d/path_cache.h" |
| 37 #include "third_party/skia/include/core/SkPath.h" |
| 38 |
| 39 namespace o3d { |
| 40 |
| 41 class Field; |
| 42 |
| 43 // This class is the link between the generic curve processing code in |
| 44 // this directory and O3D. It runs the PathProcessor on a set of |
| 45 // curves and returns the resulting triangles' vertices and texture |
| 46 // coordinates in Fields which can be incorporated into primitives in |
| 47 // the scene graph. |
| 48 class ProcessedPath : public ObjectBase { |
| 49 public: |
| 50 typedef SmartPointer<ProcessedPath> Ref; |
| 51 |
| 52 virtual ~ProcessedPath(); |
| 53 |
| 54 // Clears out all of the curve segments that have been added to this |
| 55 // path. |
| 56 void Clear(); |
| 57 |
| 58 // Moves the pen to the given absolute X,Y coordinates. If a contour |
| 59 // isn't currently open on this path, one is opened. |
| 60 void MoveTo(float x, float y); |
| 61 |
| 62 // Draws a line from the current coordinates to the given absolute |
| 63 // X,Y coordinates. |
| 64 void LineTo(float x, float y); |
| 65 |
| 66 // Draws a quadratic curve from the current coordinates through the |
| 67 // given control point and end point, specified in absolute |
| 68 // coordinates. |
| 69 void QuadraticTo(float cx, float cy, float x, float y); |
| 70 |
| 71 // Draws a cubic curve from the current coordinates through the |
| 72 // given control points and end point, specified in absolute |
| 73 // coordinates. |
| 74 void CubicTo(float c0x, float c0y, |
| 75 float c1x, float c1y, |
| 76 float x, float y); |
| 77 |
| 78 // Closes the currently open contour on this path. |
| 79 void Close(); |
| 80 |
| 81 // Creates the triangle mesh which will render the given curve |
| 82 // segments. There are two regions: exterior and interior. The |
| 83 // exterior region covers the portions containing the curve |
| 84 // segments. It has two associated fields: a 2D floating point field |
| 85 // for the positions, and a 3D floating point field for the |
| 86 // Loop/Blinn texture coordinates. The interior region has one 2D |
| 87 // floating point field for the positions. The contents of the |
| 88 // fields are organized for rendering as non-indexed triangles. |
| 89 void CreateMesh(Field* exterior_positions, |
| 90 Field* exterior_texture_coordinates, |
| 91 Field* interior_positions); |
| 92 |
| 93 private: |
| 94 explicit ProcessedPath(ServiceLocator* service_locator); |
| 95 |
| 96 void SetFields(const float* positions, |
| 97 Field* position_field, |
| 98 const float* texture_coordinates, |
| 99 Field* texture_coordinate_field, |
| 100 unsigned int num_vertices); |
| 101 |
| 102 friend class IClassManager; |
| 103 static ObjectBase::Ref Create(ServiceLocator* service_locator); |
| 104 |
| 105 SkPath path; |
| 106 gpu2d::PathCache cache; |
| 107 |
| 108 O3D_DECL_CLASS(ProcessedPath, ObjectBase); |
| 109 DISALLOW_COPY_AND_ASSIGN(ProcessedPath); |
| 110 }; |
| 111 |
| 112 } // namespace o3d |
| 113 |
| 114 #endif // O3D_CORE_CROSS_PROCESSED_PATH_H_ |
| 115 |
OLD | NEW |