2011-04-27 11:58:34 +00:00
|
|
|
/*
|
2013-08-18 14:16:15 +00:00
|
|
|
* Copyright 2011-2013 Blender Foundation
|
2011-04-27 11:58:34 +00:00
|
|
|
*
|
2013-08-18 14:16:15 +00:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2011-04-27 11:58:34 +00:00
|
|
|
*
|
2013-08-18 14:16:15 +00:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2011-04-27 11:58:34 +00:00
|
|
|
*
|
2013-08-18 14:16:15 +00:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License
|
2011-04-27 11:58:34 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "tile.h"
|
|
|
|
|
|
|
|
#include "util_algorithm.h"
|
2012-09-04 13:29:07 +00:00
|
|
|
#include "util_types.h"
|
2011-04-27 11:58:34 +00:00
|
|
|
|
|
|
|
CCL_NAMESPACE_BEGIN
|
|
|
|
|
2012-10-23 16:36:53 +00:00
|
|
|
TileManager::TileManager(bool progressive_, int num_samples_, int2 tile_size_, int start_resolution_,
|
2013-09-03 22:39:21 +00:00
|
|
|
bool preserve_tile_device_, bool background_, TileOrder tile_order_, int num_devices_)
|
2011-04-27 11:58:34 +00:00
|
|
|
{
|
|
|
|
progressive = progressive_;
|
|
|
|
tile_size = tile_size_;
|
2013-01-07 19:55:49 +00:00
|
|
|
tile_order = tile_order_;
|
2012-09-17 10:55:18 +00:00
|
|
|
start_resolution = start_resolution_;
|
2012-09-04 13:29:07 +00:00
|
|
|
num_devices = num_devices_;
|
2012-10-23 16:36:53 +00:00
|
|
|
preserve_tile_device = preserve_tile_device_;
|
2012-10-24 14:43:29 +00:00
|
|
|
background = background_;
|
2011-04-27 11:58:34 +00:00
|
|
|
|
2011-12-20 12:25:37 +00:00
|
|
|
BufferParams buffer_params;
|
|
|
|
reset(buffer_params, 0);
|
2011-04-27 11:58:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TileManager::~TileManager()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-09-04 13:29:07 +00:00
|
|
|
void TileManager::reset(BufferParams& params_, int num_samples_)
|
2011-04-27 11:58:34 +00:00
|
|
|
{
|
2011-12-20 12:25:37 +00:00
|
|
|
params = params_;
|
2011-04-27 11:58:34 +00:00
|
|
|
|
2012-09-17 10:55:18 +00:00
|
|
|
int divider = 1;
|
|
|
|
int w = params.width, h = params.height;
|
|
|
|
|
|
|
|
if(start_resolution != INT_MAX) {
|
|
|
|
while(w*h > start_resolution*start_resolution) {
|
|
|
|
w = max(1, w/2);
|
|
|
|
h = max(1, h/2);
|
|
|
|
|
|
|
|
divider *= 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-04 13:29:07 +00:00
|
|
|
num_samples = num_samples_;
|
2011-08-28 13:55:59 +00:00
|
|
|
|
2011-12-21 13:48:35 +00:00
|
|
|
state.buffer = BufferParams();
|
2011-09-16 13:14:02 +00:00
|
|
|
state.sample = -1;
|
2012-09-04 13:29:07 +00:00
|
|
|
state.num_tiles = 0;
|
|
|
|
state.num_rendered_tiles = 0;
|
|
|
|
state.num_samples = 0;
|
2012-09-17 10:55:18 +00:00
|
|
|
state.resolution_divider = divider;
|
2011-04-27 11:58:34 +00:00
|
|
|
state.tiles.clear();
|
|
|
|
}
|
|
|
|
|
2012-09-04 13:29:07 +00:00
|
|
|
void TileManager::set_samples(int num_samples_)
|
2011-08-28 13:55:59 +00:00
|
|
|
{
|
2012-09-04 13:29:07 +00:00
|
|
|
num_samples = num_samples_;
|
2011-08-28 13:55:59 +00:00
|
|
|
}
|
|
|
|
|
2012-10-24 14:43:29 +00:00
|
|
|
/* splits image into tiles and assigns equal amount of tiles to every render device */
|
|
|
|
void TileManager::gen_tiles_global()
|
2011-04-27 11:58:34 +00:00
|
|
|
{
|
2012-09-17 10:55:18 +00:00
|
|
|
int resolution = state.resolution_divider;
|
2011-12-20 12:25:37 +00:00
|
|
|
int image_w = max(1, params.width/resolution);
|
|
|
|
int image_h = max(1, params.height/resolution);
|
2011-04-27 11:58:34 +00:00
|
|
|
|
|
|
|
state.tiles.clear();
|
|
|
|
|
2012-10-24 14:43:29 +00:00
|
|
|
int tile_w = (tile_size.x >= image_w)? 1: (image_w + tile_size.x - 1)/tile_size.x;
|
|
|
|
int tile_h = (tile_size.y >= image_h)? 1: (image_h + tile_size.y - 1)/tile_size.y;
|
|
|
|
|
2012-10-23 16:36:53 +00:00
|
|
|
int num_logical_devices = preserve_tile_device? num_devices: 1;
|
2012-10-24 14:43:29 +00:00
|
|
|
int num = min(image_h, num_logical_devices);
|
|
|
|
int tile_index = 0;
|
|
|
|
|
|
|
|
int tiles_per_device = (tile_w * tile_h + num - 1) / num;
|
|
|
|
int cur_device = 0, cur_tiles = 0;
|
|
|
|
|
|
|
|
for(int tile_y = 0; tile_y < tile_h; tile_y++) {
|
|
|
|
for(int tile_x = 0; tile_x < tile_w; tile_x++, tile_index++) {
|
2012-11-05 08:05:14 +00:00
|
|
|
int x = tile_x * tile_size.x;
|
|
|
|
int y = tile_y * tile_size.y;
|
|
|
|
int w = (tile_x == tile_w-1)? image_w - x: tile_size.x;
|
|
|
|
int h = (tile_y == tile_h-1)? image_h - y: tile_size.y;
|
2012-10-24 14:43:29 +00:00
|
|
|
|
|
|
|
state.tiles.push_back(Tile(tile_index, x, y, w, h, cur_device));
|
|
|
|
cur_tiles++;
|
|
|
|
|
|
|
|
if(cur_tiles == tiles_per_device) {
|
|
|
|
cur_tiles = 0;
|
|
|
|
cur_device++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* slices image into as much pieces as how many devices are rendering this image */
|
|
|
|
void TileManager::gen_tiles_sliced()
|
|
|
|
{
|
|
|
|
int resolution = state.resolution_divider;
|
|
|
|
int image_w = max(1, params.width/resolution);
|
|
|
|
int image_h = max(1, params.height/resolution);
|
|
|
|
|
|
|
|
state.tiles.clear();
|
2012-10-23 16:36:53 +00:00
|
|
|
|
2012-10-24 14:43:29 +00:00
|
|
|
int num_logical_devices = preserve_tile_device? num_devices: 1;
|
2012-10-23 16:36:53 +00:00
|
|
|
int num = min(image_h, num_logical_devices);
|
2012-10-24 14:43:29 +00:00
|
|
|
int tile_index = 0;
|
2012-09-04 13:29:07 +00:00
|
|
|
|
|
|
|
for(int device = 0; device < num; device++) {
|
|
|
|
int device_y = (image_h/num)*device;
|
|
|
|
int device_h = (device == num-1)? image_h - device*(image_h/num): image_h/num;
|
|
|
|
|
|
|
|
int tile_w = (tile_size.x >= image_w)? 1: (image_w + tile_size.x - 1)/tile_size.x;
|
|
|
|
int tile_h = (tile_size.y >= device_h)? 1: (device_h + tile_size.y - 1)/tile_size.y;
|
2011-04-27 11:58:34 +00:00
|
|
|
|
2012-09-04 13:29:07 +00:00
|
|
|
for(int tile_y = 0; tile_y < tile_h; tile_y++) {
|
2012-10-23 16:36:53 +00:00
|
|
|
for(int tile_x = 0; tile_x < tile_w; tile_x++, tile_index++) {
|
2012-11-05 08:05:14 +00:00
|
|
|
int x = tile_x * tile_size.x;
|
|
|
|
int y = tile_y * tile_size.y;
|
|
|
|
int w = (tile_x == tile_w-1)? image_w - x: tile_size.x;
|
2012-11-05 11:57:14 +00:00
|
|
|
int h = (tile_y == tile_h-1)? device_h - y: tile_size.y;
|
2012-09-04 13:29:07 +00:00
|
|
|
|
2012-10-23 16:36:53 +00:00
|
|
|
state.tiles.push_back(Tile(tile_index, x, y + device_y, w, h, device));
|
2012-09-04 13:29:07 +00:00
|
|
|
}
|
2011-04-27 11:58:34 +00:00
|
|
|
}
|
|
|
|
}
|
2012-10-24 14:43:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void TileManager::set_tiles()
|
|
|
|
{
|
|
|
|
int resolution = state.resolution_divider;
|
|
|
|
int image_w = max(1, params.width/resolution);
|
|
|
|
int image_h = max(1, params.height/resolution);
|
|
|
|
|
|
|
|
if(background)
|
|
|
|
gen_tiles_global();
|
|
|
|
else
|
|
|
|
gen_tiles_sliced();
|
2011-04-27 11:58:34 +00:00
|
|
|
|
2012-09-04 13:29:07 +00:00
|
|
|
state.num_tiles = state.tiles.size();
|
|
|
|
|
2011-12-21 13:48:35 +00:00
|
|
|
state.buffer.width = image_w;
|
|
|
|
state.buffer.height = image_h;
|
|
|
|
|
|
|
|
state.buffer.full_x = params.full_x/resolution;
|
|
|
|
state.buffer.full_y = params.full_y/resolution;
|
|
|
|
state.buffer.full_width = max(1, params.full_width/resolution);
|
|
|
|
state.buffer.full_height = max(1, params.full_height/resolution);
|
2011-04-27 11:58:34 +00:00
|
|
|
}
|
|
|
|
|
2013-01-07 19:55:49 +00:00
|
|
|
list<Tile>::iterator TileManager::next_viewport_tile(int device)
|
|
|
|
{
|
|
|
|
list<Tile>::iterator iter;
|
|
|
|
|
|
|
|
int logical_device = preserve_tile_device? device: 0;
|
|
|
|
|
|
|
|
for(iter = state.tiles.begin(); iter != state.tiles.end(); iter++) {
|
|
|
|
if(iter->device == logical_device && iter->rendering == false)
|
|
|
|
return iter;
|
|
|
|
}
|
|
|
|
|
|
|
|
return state.tiles.end();
|
|
|
|
}
|
|
|
|
|
2013-09-03 22:39:21 +00:00
|
|
|
list<Tile>::iterator TileManager::next_background_tile(int device, TileOrder tile_order)
|
2012-10-25 12:03:36 +00:00
|
|
|
{
|
2013-01-07 19:55:49 +00:00
|
|
|
list<Tile>::iterator iter, best = state.tiles.end();
|
2012-10-25 12:03:36 +00:00
|
|
|
|
2013-01-07 19:55:49 +00:00
|
|
|
int resolution = state.resolution_divider;
|
2012-10-25 12:03:36 +00:00
|
|
|
int logical_device = preserve_tile_device? device: 0;
|
|
|
|
|
2013-01-07 19:55:49 +00:00
|
|
|
int64_t cordx = max(1, params.width/resolution);
|
|
|
|
int64_t cordy = max(1, params.height/resolution);
|
2013-08-09 19:55:46 +00:00
|
|
|
int64_t mindist = INT_MAX;
|
2013-05-08 19:49:09 +00:00
|
|
|
|
|
|
|
int64_t centx = cordx / 2, centy = cordy / 2;
|
2013-01-07 19:55:49 +00:00
|
|
|
|
2012-10-25 12:03:36 +00:00
|
|
|
for(iter = state.tiles.begin(); iter != state.tiles.end(); iter++) {
|
2013-01-07 19:55:49 +00:00
|
|
|
if(iter->device == logical_device && iter->rendering == false) {
|
|
|
|
Tile &cur_tile = *iter;
|
|
|
|
|
|
|
|
int64_t distx = cordx;
|
2013-05-08 19:49:09 +00:00
|
|
|
int64_t disty = cordy;
|
2013-01-07 19:55:49 +00:00
|
|
|
|
2013-05-08 19:49:09 +00:00
|
|
|
switch (tile_order) {
|
2013-09-03 22:39:21 +00:00
|
|
|
case TILE_CENTER:
|
2013-05-08 19:49:09 +00:00
|
|
|
distx = centx - (cur_tile.x + cur_tile.w);
|
|
|
|
disty = centy - (cur_tile.y + cur_tile.h);
|
|
|
|
distx = (int64_t) sqrt((double)distx * distx + disty * disty);
|
|
|
|
break;
|
2013-09-03 22:39:21 +00:00
|
|
|
case TILE_RIGHT_TO_LEFT:
|
2013-05-08 19:49:09 +00:00
|
|
|
distx = cordx - cur_tile.x;
|
|
|
|
break;
|
2013-09-03 22:39:21 +00:00
|
|
|
case TILE_LEFT_TO_RIGHT:
|
2013-05-08 19:49:09 +00:00
|
|
|
distx = cordx + cur_tile.x;
|
|
|
|
break;
|
2013-09-03 22:39:21 +00:00
|
|
|
case TILE_TOP_TO_BOTTOM:
|
2013-05-08 19:49:09 +00:00
|
|
|
distx = cordx - cur_tile.y;
|
|
|
|
break;
|
2013-09-03 22:39:21 +00:00
|
|
|
case TILE_BOTTOM_TO_TOP:
|
2013-05-08 19:49:09 +00:00
|
|
|
distx = cordx + cur_tile.y;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2013-01-07 19:55:49 +00:00
|
|
|
|
|
|
|
if(distx < mindist) {
|
|
|
|
best = iter;
|
|
|
|
mindist = distx;
|
|
|
|
}
|
|
|
|
}
|
2012-10-25 12:03:36 +00:00
|
|
|
}
|
|
|
|
|
2013-01-07 19:55:49 +00:00
|
|
|
return best;
|
2012-10-25 12:03:36 +00:00
|
|
|
}
|
|
|
|
|
2012-09-04 13:29:07 +00:00
|
|
|
bool TileManager::next_tile(Tile& tile, int device)
|
|
|
|
{
|
|
|
|
list<Tile>::iterator tile_it;
|
2013-05-08 19:49:09 +00:00
|
|
|
|
|
|
|
if (background)
|
|
|
|
tile_it = next_background_tile(device, tile_order);
|
2012-10-25 12:03:36 +00:00
|
|
|
else
|
2013-01-07 19:55:49 +00:00
|
|
|
tile_it = next_viewport_tile(device);
|
2012-09-04 13:29:07 +00:00
|
|
|
|
|
|
|
if(tile_it != state.tiles.end()) {
|
|
|
|
tile_it->rendering = true;
|
|
|
|
tile = *tile_it;
|
|
|
|
state.num_rendered_tiles++;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-04-27 11:58:34 +00:00
|
|
|
bool TileManager::done()
|
|
|
|
{
|
2012-09-17 10:55:18 +00:00
|
|
|
return (state.sample+state.num_samples >= num_samples && state.resolution_divider == 1);
|
2011-04-27 11:58:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool TileManager::next()
|
|
|
|
{
|
|
|
|
if(done())
|
|
|
|
return false;
|
|
|
|
|
2012-09-17 10:55:18 +00:00
|
|
|
if(progressive && state.resolution_divider > 1) {
|
2011-09-16 13:14:02 +00:00
|
|
|
state.sample = 0;
|
2012-09-17 10:55:18 +00:00
|
|
|
state.resolution_divider /= 2;
|
2012-09-04 13:29:07 +00:00
|
|
|
state.num_samples = 1;
|
2011-04-27 11:58:34 +00:00
|
|
|
set_tiles();
|
|
|
|
}
|
|
|
|
else {
|
2011-09-16 13:14:02 +00:00
|
|
|
state.sample++;
|
2012-09-04 13:29:07 +00:00
|
|
|
|
|
|
|
if(progressive)
|
|
|
|
state.num_samples = 1;
|
|
|
|
else
|
|
|
|
state.num_samples = num_samples;
|
|
|
|
|
2012-09-17 10:55:18 +00:00
|
|
|
state.resolution_divider = 1;
|
2011-04-27 11:58:34 +00:00
|
|
|
set_tiles();
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
CCL_NAMESPACE_END
|
|
|
|
|