// // Copyright (c) 2008-2014 the Urho3D project. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. // #include #include #include #include #ifdef WIN32 #include #endif #include #include #include using namespace Urho3D; int main(int argc, char** argv); void Run(const Vector& arguments); int main(int argc, char** argv) { Vector arguments; #ifdef WIN32 arguments = ParseArguments(GetCommandLineW()); #else arguments = ParseArguments(argc, argv); #endif Run(arguments); return 0; } void Run(const Vector& arguments) { if (arguments.Size() < 3) ErrorExit("Usage: RampGenerator [dimensions]\n"); int width = ToInt(arguments[1]); float power = ToFloat(arguments[2]); int dimensions = 1; if (arguments.Size() > 3) dimensions = ToInt(arguments[3]); if (width < 2) ErrorExit("Width must be at least 2"); if (dimensions < 1 || dimensions > 2) ErrorExit("Dimensions must be 1 or 2"); if (dimensions == 1) { SharedArrayPtr data(new unsigned char[width]); for (int i = 0; i < width; ++i) { float x = ((float)i) / ((float)(width - 1)); data[i] = (unsigned char)((1.0f - pow(x, power)) * 255.0f); } // Ensure start is full bright & end is completely black data[0] = 255; data[width - 1] = 0; stbi_write_png(arguments[0].CString(), width, 1, 1, data.Get(), 0); } if (dimensions == 2) { SharedArrayPtr data(new unsigned char[width * width]); for (int y = 0; y < width; ++y) { for (int x = 0; x < width; ++x) { unsigned i = y * width + x; float halfWidth = width * 0.5f; float xf = (x - halfWidth + 0.5f) / (halfWidth - 0.5f); float yf = (y - halfWidth + 0.5f) / (halfWidth - 0.5f); float dist = sqrtf(xf * xf + yf * yf); if (dist > 1.0f) dist = 1.0f; data[i] = (unsigned char)((1.0f - pow(dist, power)) * 255.0f); } } // Ensure the border is completely black for (int x = 0; x < width; ++x) { data[x] = 0; data[(width - 1) * width + x] = 0; data[x * width] = 0; data[x * width + (width - 1)] = 0; } stbi_write_png(arguments[0].CString(), width, width, 1, data.Get(), 0); } }