summaryrefslogtreecommitdiff
path: root/include/s/s_Math.h
blob: 69115a9023547c9b6a1c84e4d0a16f21c74baa97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#ifndef S_MATH_H
#define S_MATH_H

#include "common.h"

namespace sLib {

// Names from NSMBW
float addCalc(float *value, float target, float ratio, float maxStepSize, float minStepSize);
short addCalcAngle(short *value, short target, short ratio, short maxStepSize, short minStepSize);
void addCalcAngle(short *value, short target, short ratio, short maxStepSize);
BOOL chase(short *value, short target, short stepSize);
BOOL chase(int *value, int target, int stepSize);
BOOL chase(float *value, float target, float stepSize);
BOOL chaseAngle(short *value, short target, short stepSize);

// Inofficial names
short addCalcAngle2(short *value, short target, short ratio, short maxStepSize, short minStepSize);
BOOL chaseAngle2(short *value, short target, short stepSize);
float extrapolate(float start, float end, float scale);
BOOL isInRange(float val, float min, float max);
void addCalcScaledDiff(float *value, float target, float ratio, float maxStepSize);
void addCalcScaled(float *value, float stepSize, float maxStep);
int absDiff(short a1, short a2);
BOOL chaseUC(u8 *value, u8 target, u8 stepSize);

template <typename T>
T calcTimer(T *val) {
    if (*val != 0) {
        *val -= 1;
    }
    return *val;
}

} // namespace sLib

#endif