finalcut/examples/mandelbrot.cpp

167 lines
4.8 KiB
C++
Raw Normal View History

2017-11-04 07:03:53 +01:00
/***********************************************************************
* mandelbrot.cpp - Shows a ASCII based Mandelbrot set *
* *
* This file is part of the Final Cut widget toolkit *
* *
2020-01-20 21:40:00 +01:00
* Copyright 2015-2020 Markus Gans *
2017-11-04 07:03:53 +01:00
* *
* The Final Cut is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Lesser General Public License *
* as published by the Free Software Foundation; either version 3 of *
* the License, or (at your option) any later version. *
* *
* The Final Cut is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU Lesser General Public *
* License along with this program. If not, see *
* <http://www.gnu.org/licenses/>. *
***********************************************************************/
2015-05-25 23:39:09 +02:00
#include <final/final.h>
2015-05-25 23:39:09 +02:00
namespace fc = finalcut::fc;
using finalcut::FPoint;
using finalcut::FSize;
2015-05-25 23:39:09 +02:00
//----------------------------------------------------------------------
// class Mandelbrot
//----------------------------------------------------------------------
class Mandelbrot : public finalcut::FDialog
2015-05-25 23:39:09 +02:00
{
2017-09-11 03:06:02 +02:00
public:
// Constructor
explicit Mandelbrot (finalcut::FWidget* = nullptr);
2017-09-11 03:06:02 +02:00
// Destructor
~Mandelbrot();
2017-09-11 03:06:02 +02:00
// Event handlers
2019-08-06 23:45:28 +02:00
void onKeyPress (finalcut::FKeyEvent*) override;
void onClose (finalcut::FCloseEvent*) override;
2017-09-11 03:06:02 +02:00
private:
// Methods
2019-08-06 23:45:28 +02:00
void draw() override;
void adjustSize() override;
2015-05-25 23:39:09 +02:00
};
2019-09-08 02:04:24 +02:00
2015-05-25 23:39:09 +02:00
//----------------------------------------------------------------------
Mandelbrot::Mandelbrot (finalcut::FWidget* parent)
: finalcut::FDialog(parent)
2015-05-25 23:39:09 +02:00
{
setText ("Mandelbrot set");
}
//----------------------------------------------------------------------
Mandelbrot::~Mandelbrot()
2015-09-22 04:18:20 +02:00
{ }
2015-05-25 23:39:09 +02:00
//----------------------------------------------------------------------
void Mandelbrot::draw()
{
finalcut::FDialog::draw();
2015-05-25 23:39:09 +02:00
2019-08-25 22:16:00 +02:00
double x_min{-2.20};
double x_max{+1.00};
double y_min{-1.05};
double y_max{+1.05};
int max_iter{99};
2015-05-25 23:39:09 +02:00
2019-08-25 22:16:00 +02:00
int xoffset{2};
int yoffset{2};
int current_line{0};
int Cols = int(getClientWidth());
2019-08-25 22:16:00 +02:00
int Lines = int(getClientHeight());
2015-05-25 23:39:09 +02:00
2020-01-20 21:40:00 +01:00
if ( Cols < 2 || Lines < 2 )
return;
2019-08-25 22:16:00 +02:00
double dX = (x_max - x_min) / (Cols - 1);
double dY = (y_max - y_min) / Lines;
2015-05-25 23:39:09 +02:00
2019-08-25 22:16:00 +02:00
for (double y0 = y_min; y0 < y_max && current_line < Lines; y0 += dY)
2015-05-25 23:39:09 +02:00
{
current_line++;
print() << FPoint(xoffset, yoffset + current_line);
2015-05-25 23:39:09 +02:00
2019-08-25 22:16:00 +02:00
for (double x0 = x_min; x0 < x_max; x0 += dX)
2015-05-25 23:39:09 +02:00
{
2019-08-25 22:16:00 +02:00
double x{0.0};
double y{0.0};
int iter{0};
2015-05-25 23:39:09 +02:00
while ( x * x + y * y < 4 && iter < max_iter )
2015-05-25 23:39:09 +02:00
{
2019-08-25 22:16:00 +02:00
double xtemp = x * x - y * y + x0;
y = 2 * x * y + y0;
2015-05-25 23:39:09 +02:00
x = xtemp;
iter++;
}
2015-05-25 23:39:09 +02:00
if ( iter < max_iter )
setColor(fc::Black, iter % 16);
2015-05-25 23:39:09 +02:00
else
setColor(fc::Black, 0);
2015-05-25 23:39:09 +02:00
print(' ');
}
}
}
//----------------------------------------------------------------------
void Mandelbrot::onKeyPress (finalcut::FKeyEvent* ev)
2015-05-25 23:39:09 +02:00
{
if ( ! ev )
return;
if ( ev->key() == 'q' )
{
close();
ev->accept();
}
else
finalcut::FDialog::onKeyPress(ev);
2015-05-25 23:39:09 +02:00
}
//----------------------------------------------------------------------
void Mandelbrot::onClose (finalcut::FCloseEvent* ev)
2015-05-25 23:39:09 +02:00
{
finalcut::FApplication::closeConfirmationDialog (this, ev);
2015-05-25 23:39:09 +02:00
}
//----------------------------------------------------------------------
void Mandelbrot::adjustSize()
{
std::size_t h = getDesktopHeight() - 1;
std::size_t w = getDesktopWidth() - 10;
setGeometry(FPoint(6, 1), FSize(w, h), false);
finalcut::FDialog::adjustSize();
2015-05-25 23:39:09 +02:00
}
//----------------------------------------------------------------------
// main part
//----------------------------------------------------------------------
int main (int argc, char* argv[])
{
// Create the application object
finalcut::FApplication app(argc, argv);
2015-05-25 23:39:09 +02:00
// Create a simple dialog box
Mandelbrot mb(&app);
mb.setGeometry (FPoint(6, 1), FSize(70, 23));
2015-05-25 23:39:09 +02:00
mb.setShadow();
// Set the mandelbrot object as main widget
2015-05-25 23:39:09 +02:00
app.setMainWidget(&mb);
// Show and start the application
2015-05-25 23:39:09 +02:00
mb.show();
return app.exec();
}