|
| 1 | +/* |
| 2 | + * Copyright (c) 2026 ThorVG project. All rights reserved. |
| 3 | +
|
| 4 | + * Permission is hereby granted, free of charge, to any person obtaining a copy |
| 5 | + * of this software and associated documentation files (the "Software"), to deal |
| 6 | + * in the Software without restriction, including without limitation the rights |
| 7 | + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 8 | + * copies of the Software, and to permit persons to whom the Software is |
| 9 | + * furnished to do so, subject to the following conditions: |
| 10 | +
|
| 11 | + * The above copyright notice and this permission notice shall be included in all |
| 12 | + * copies or substantial portions of the Software. |
| 13 | +
|
| 14 | + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 15 | + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 16 | + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 17 | + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 18 | + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 19 | + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| 20 | + * SOFTWARE. |
| 21 | + */ |
| 22 | + |
| 23 | +#include "Example.h" |
| 24 | +#include <random> |
| 25 | + |
| 26 | + |
| 27 | +constexpr int kCanvasSize = 1650; |
| 28 | +constexpr int kImageCount = 500; |
| 29 | +constexpr int kRotationRange = 360; |
| 30 | +constexpr int kMinScaleStep = 10; |
| 31 | +constexpr int kScaleRange = 90; |
| 32 | +constexpr float kScaleFactor = 0.005f; |
| 33 | + |
| 34 | +static int randomValue(int upper) |
| 35 | +{ |
| 36 | + // Keep RNG state per-thread instead of relying on global rand(). |
| 37 | + thread_local std::minstd_rand rng{std::random_device{}()}; |
| 38 | + thread_local std::uniform_int_distribution<int> dist; |
| 39 | + return dist(rng, decltype(dist)::param_type(0, upper - 1)); |
| 40 | +} |
| 41 | + |
| 42 | +/************************************************************************/ |
| 43 | +/* ThorVG Drawing Contents */ |
| 44 | +/************************************************************************/ |
| 45 | + |
| 46 | +struct UserExample : tvgexam::Example |
| 47 | +{ |
| 48 | + bool content(tvg::Canvas* canvas, uint32_t w, uint32_t h) override |
| 49 | + { |
| 50 | + for (int i = 0; i < kImageCount; ++i) { |
| 51 | + auto p = tvg::Picture::gen(); |
| 52 | + if (!tvgexam::verify(p->load(EXAMPLE_DIR"/image/test.png"))) return false; |
| 53 | + p->origin(0.5f, 0.5f); |
| 54 | + p->translate(randomValue(kCanvasSize), randomValue(kCanvasSize)); |
| 55 | + p->scale(float(kMinScaleStep + randomValue(kScaleRange)) * kScaleFactor); |
| 56 | + p->rotate(float(randomValue(kRotationRange))); |
| 57 | + canvas->add(p); |
| 58 | + } |
| 59 | + return true; |
| 60 | + } |
| 61 | + |
| 62 | + bool update(tvg::Canvas* canvas, uint32_t elapsed) override |
| 63 | + { |
| 64 | + for (auto paint : canvas->paints()) { |
| 65 | + auto p = static_cast<tvg::Picture*>(paint); |
| 66 | + p->translate(randomValue(kCanvasSize), randomValue(kCanvasSize)); |
| 67 | + p->scale(float(kMinScaleStep + randomValue(kScaleRange)) * kScaleFactor); |
| 68 | + p->rotate(float(randomValue(kRotationRange))); |
| 69 | + } |
| 70 | + return canvas->update() == tvg::Result(0); |
| 71 | + } |
| 72 | +}; |
| 73 | + |
| 74 | +/************************************************************************/ |
| 75 | +/* Entry Point */ |
| 76 | +/************************************************************************/ |
| 77 | + |
| 78 | +int main(int argc, char **argv) |
| 79 | +{ |
| 80 | + return tvgexam::main(new UserExample, argc, argv, true, kCanvasSize, kCanvasSize, 4, true); |
| 81 | +} |
0 commit comments