77 lines
2.1 KiB
C++
77 lines
2.1 KiB
C++
#include "VectorField.hpp"
|
|
|
|
#include <chrono>
|
|
#include <iostream>
|
|
#include <SDL.h>
|
|
|
|
VectorField::VectorField() :
|
|
width(0), height(0), biggestMagnitude(1.0)
|
|
{
|
|
}
|
|
|
|
VectorField::VectorField(int width, int height) :
|
|
width(width), height(height)
|
|
{
|
|
horizontal = std::vector<double>(width * height, 0.0);
|
|
vertical = std::vector<double>(width * height, 0.0);
|
|
|
|
biggestMagnitude = 1.0f;
|
|
}
|
|
|
|
VectorField::VectorField(int width, int height, const std::vector<double>& hori, const std::vector<double>& vert) :
|
|
width(width), height(height)
|
|
{
|
|
horizontal = hori;
|
|
vertical = vert;
|
|
|
|
RecalculateMagnitude();
|
|
}
|
|
|
|
void VectorField::Draw(SDL_Renderer* renderer, const SDL_Rect& targetRect)
|
|
{
|
|
double cellWidth = (double)(targetRect.w - targetRect.x) / (double)width;
|
|
double cellHeight = (double)(targetRect.h - targetRect.y) / (double)height;
|
|
|
|
SDL_FRect vectorCenterSquare;
|
|
vectorCenterSquare.w = cellWidth / 5.0;
|
|
vectorCenterSquare.h = cellHeight / 5.0;
|
|
|
|
SDL_SetRenderDrawColor(renderer, 200, 20, 20, 100);
|
|
for (int y = 0; y < height; y++)
|
|
{
|
|
for (int x = 0; x < width; x++)
|
|
{
|
|
vectorCenterSquare.x = (double)targetRect.x + cellWidth * (x + 0.4); // cellWidth * x + cellWidth / 2 - cellWidth / 10
|
|
vectorCenterSquare.y = (double)targetRect.y + cellHeight * (y + 0.4);
|
|
SDL_RenderFillRectF(renderer, &vectorCenterSquare);
|
|
SDL_RenderDrawLineF(renderer,
|
|
(double)targetRect.x + cellWidth * (x + 0.5),
|
|
(double)targetRect.y + cellHeight * (y + 0.5),
|
|
(double)targetRect.x + cellWidth * (x + 0.5) + horizontal[y * width + x] / biggestMagnitude * cellWidth * 2.5,
|
|
(double)targetRect.y + cellHeight * (y + 0.5) + vertical[y * width + x] / biggestMagnitude * cellHeight * 2.5
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
void VectorField::RecalculateMagnitude()
|
|
{
|
|
for (int y = 0; y < this->height; y++)
|
|
{
|
|
for (int x = 0; x < this->width; x++)
|
|
{
|
|
double u = horizontal[y * this->width + x];
|
|
double v = vertical[y * this->width + x];
|
|
double magnitude = u * u + v * v;
|
|
|
|
biggestMagnitude = std::max(biggestMagnitude, magnitude);
|
|
}
|
|
}
|
|
|
|
if (biggestMagnitude == 0.0) // should use an epsilon probably
|
|
biggestMagnitude = 1.0;
|
|
|
|
biggestMagnitude = sqrt(biggestMagnitude);
|
|
biggestMagnitude = 0.5f;
|
|
}
|