2017-12-13 23:28:35 +00:00
|
|
|
/*
|
|
|
|
* Modern effects for a modern Streamer
|
|
|
|
* Copyright (C) 2017 Michael Fabian Dirks
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#include <math.h>
|
|
|
|
#include <inttypes.h>
|
util-math: Add SizeFromString method
Converts a String to an std::pair of int64_t (long long), which contain the size or 0 if none could be parsed. Any delimiter except digits(0-9), a minus sign(-) or a plus sign(+) between width and height are allowed. If a plus or minus sign is used as a delimiter, it must immediately be followed by the second size number. This allows for formats such as: 100x100, 100:100, 100p100, 100@100, 100+100 and so on, but not formats such as 100+:100, 100ThisIsSomeReall+yLongText100, etc.
The parameter 'allowSquare' also determines what to do when the height parameter is not found. A value of true will have the function return <width,width> instead of <width,0>.
2018-03-05 15:36:20 +00:00
|
|
|
#include <utility>
|
|
|
|
#include <string>
|
2017-12-13 23:28:35 +00:00
|
|
|
|
2018-01-08 14:23:25 +00:00
|
|
|
// OBS
|
2018-01-08 15:47:39 +00:00
|
|
|
#include <libobs/graphics/vec2.h>
|
|
|
|
#include <libobs/graphics/vec3.h>
|
|
|
|
#include <libobs/graphics/vec4.h>
|
2018-01-08 14:23:25 +00:00
|
|
|
|
|
|
|
// Constants
|
2017-12-13 23:28:35 +00:00
|
|
|
#define PI 3.1415926535897932384626433832795
|
|
|
|
#define PI2 6.283185307179586476925286766559
|
|
|
|
#define PI2_SQROOT 2.506628274631000502415765284811
|
|
|
|
|
|
|
|
inline double_t Gaussian1D(double_t x, double_t o) {
|
|
|
|
double_t c = (x / o);
|
|
|
|
double_t b = exp(-0.5 * c * c);
|
|
|
|
double_t a = (1.0 / (o * PI2_SQROOT));
|
|
|
|
return a * b;
|
|
|
|
}
|
2017-12-14 00:36:07 +00:00
|
|
|
|
|
|
|
inline size_t GetNearestPowerOfTwoAbove(size_t v) {
|
2017-12-14 02:00:31 +00:00
|
|
|
return 1ull << size_t(ceil(log10(double(v)) / log10(2.0)));
|
2017-12-14 00:36:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline size_t GetNearestPowerOfTwoBelow(size_t v) {
|
2017-12-14 02:00:31 +00:00
|
|
|
return 1ull << size_t(floor(log10(double(v)) / log10(2.0)));
|
2017-12-14 00:36:07 +00:00
|
|
|
}
|
2018-01-08 14:23:25 +00:00
|
|
|
|
|
|
|
namespace util {
|
|
|
|
__declspec(align(16)) struct vec3a : public vec3 {
|
|
|
|
static void* vec3a::operator new(size_t count);
|
|
|
|
static void* vec3a::operator new[](size_t count);
|
|
|
|
static void vec3a::operator delete(void* p);
|
|
|
|
static void vec3a::operator delete[](void* p);
|
|
|
|
};
|
|
|
|
|
|
|
|
__declspec(align(16)) struct vec4a : public vec4 {
|
|
|
|
static void* vec4a::operator new(size_t count);
|
|
|
|
static void* vec4a::operator new[](size_t count);
|
|
|
|
static void vec4a::operator delete(void* p);
|
|
|
|
static void vec4a::operator delete[](void* p);
|
|
|
|
};
|
util-math: Add SizeFromString method
Converts a String to an std::pair of int64_t (long long), which contain the size or 0 if none could be parsed. Any delimiter except digits(0-9), a minus sign(-) or a plus sign(+) between width and height are allowed. If a plus or minus sign is used as a delimiter, it must immediately be followed by the second size number. This allows for formats such as: 100x100, 100:100, 100p100, 100@100, 100+100 and so on, but not formats such as 100+:100, 100ThisIsSomeReall+yLongText100, etc.
The parameter 'allowSquare' also determines what to do when the height parameter is not found. A value of true will have the function return <width,width> instead of <width,0>.
2018-03-05 15:36:20 +00:00
|
|
|
|
|
|
|
std::pair<int64_t, int64_t> SizeFromString(std::string text, bool allowSquare = true);
|
2018-01-08 15:47:39 +00:00
|
|
|
}
|