Welcome to mirror list, hosted at ThFree Co, Russian Federation.

COM_TrackPositionOperation.h « operations « compositor « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 25e5a144228e1ffd2afcd1bcd47fc1cd8a4e63c7 (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/*
 * 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.
 *
 * Copyright 2012, Blender Foundation.
 */

#pragma once

#include <string.h>

#include "COM_ConstantOperation.h"

#include "DNA_movieclip_types.h"
#include "DNA_tracking_types.h"

#include "BLI_listbase.h"
#include "BLI_string.h"

namespace blender::compositor {

/**
 * Class with implementation of green screen gradient rasterization
 */
class TrackPositionOperation : public ConstantOperation {
 protected:
  MovieClip *movieClip_;
  int framenumber_;
  char trackingObjectName_[64];
  char trackName_[64];
  int axis_;
  int position_;
  int relativeFrame_;
  bool speed_output_;

  int width_, height_;
  float markerPos_[2];
  float relativePos_[2];
  float track_position_;
  bool is_track_position_calculated_;

  /**
   * Determine the output resolution. The resolution is retrieved from the Renderer
   */
  void determine_canvas(const rcti &preferred_area, rcti &r_area) override;

 public:
  TrackPositionOperation();

  void setMovieClip(MovieClip *clip)
  {
    movieClip_ = clip;
  }
  void setTrackingObject(char *object)
  {
    BLI_strncpy(trackingObjectName_, object, sizeof(trackingObjectName_));
  }
  void setTrackName(char *track)
  {
    BLI_strncpy(trackName_, track, sizeof(trackName_));
  }
  void setFramenumber(int framenumber)
  {
    framenumber_ = framenumber;
  }
  void setAxis(int value)
  {
    axis_ = value;
  }
  void setPosition(int value)
  {
    position_ = value;
  }
  void setRelativeFrame(int value)
  {
    relativeFrame_ = value;
  }
  void setSpeedOutput(bool speed_output)
  {
    speed_output_ = speed_output;
  }

  void initExecution() override;

  void executePixelSampled(float output[4], float x, float y, PixelSampler sampler) override;

  const float *get_constant_elem() override;

 private:
  void calc_track_position();
};

}  // namespace blender::compositor