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 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420
|
#include "AppHdr.h"
#include "viewgeom.h"
#include "options.h"
#include "player.h"
#include "state.h"
#include "stuff.h"
// ----------------------------------------------------------------------
// Layout helper classes
// ----------------------------------------------------------------------
// Moved from directn.h, where they didn't need to be.
// define VIEW_MIN_HEIGHT defined elsewhere
// define VIEW_MAX_HEIGHT use Options.view_max_height
// define VIEW_MIN_WIDTH defined elsewhere
// define VIEW_MAX_WIDTH use Options.view_max_width
#define HUD_WIDTH 42
#define HUD_HEIGHT 12
#define MSG_MAX_HEIGHT Options.msg_max_height
#define MLIST_MIN_HEIGHT Options.mlist_min_height
#define MLIST_MIN_WIDTH 25 // non-inline layout only
#define MLIST_MAX_WIDTH 42
#define MLIST_GUTTER 1
#define HUD_MIN_GUTTER 2
#define HUD_MAX_GUTTER 4
// Helper for layouts. Tries to increment lvalue without overflowing it.
static void _increment(int& lvalue, int delta, int max_value)
{
lvalue = std::min(lvalue+delta, max_value);
}
class _layout
{
public:
_layout(coord_def termsz_, coord_def hudsz_) :
termp(1,1), termsz(termsz_),
viewp(-1,-1), viewsz(VIEW_MIN_WIDTH, VIEW_MIN_HEIGHT),
hudp(-1,-1), hudsz(hudsz_),
msgp(-1,-1), msgsz(0, Options.msg_min_height),
mlistp(-1,-1), mlistsz(MLIST_MIN_WIDTH, 0),
hud_gutter(HUD_MIN_GUTTER),
valid(false) {}
protected:
void _assert_validity() const
{
#ifndef USE_TILE
// Check that all the panes fit in the view.
ASSERT( (viewp+viewsz - termp).x <= termsz.x );
ASSERT( (viewp+viewsz - termp).y <= termsz.y );
ASSERT( (hudp+hudsz - termp).x <= termsz.x );
ASSERT( (hudp+hudsz - termp).y <= termsz.y );
ASSERT( (msgp+msgsz - termp).x <= termsz.x );
ASSERT( (msgp+msgsz - termp).y <= termsz.y );
ASSERT( (mlistp+mlistsz-termp).x <= termsz.x );
ASSERT( (mlistp+mlistsz-termp).y <= termsz.y );
#endif
}
public:
const coord_def termp, termsz;
coord_def viewp, viewsz;
coord_def hudp;
const coord_def hudsz;
coord_def msgp, msgsz;
coord_def mlistp, mlistsz;
int hud_gutter;
bool valid;
};
// vvvvvvghhh v=view, g=hud gutter, h=hud, l=list, m=msg
// vvvvvvghhh
// vvvvvv lll
// lll
// mmmmmmmmmm
class _inline_layout : public _layout
{
public:
_inline_layout(coord_def termsz_, coord_def hudsz_) :
_layout(termsz_, hudsz_)
{
valid = _init();
}
bool _init()
{
// x: View gets leftover; then mlist; then hud gutter
if (leftover_x() < 0)
return (false);
_increment(viewsz.x, leftover_x(), Options.view_max_width);
if ((viewsz.x % 2) != 1)
--viewsz.x;
mlistsz.x = hudsz.x;
_increment(mlistsz.x, leftover_x(), MLIST_MAX_WIDTH);
_increment(hud_gutter, leftover_x(), HUD_MAX_GUTTER);
_increment(mlistsz.x, leftover_x(), INT_MAX);
msgsz.x = termsz.x;
// y: View gets as much as it wants.
// mlist tries to get at least its minimum.
// msg expands as much as it wants.
// mlist gets any leftovers.
if (leftover_y() < 0)
return (false);
_increment(viewsz.y, leftover_leftcol_y(), Options.view_max_height);
if ((viewsz.y % 2) != 1)
--viewsz.y;
if (Options.classic_hud)
{
mlistsz.y = 0;
_increment(msgsz.y, leftover_y(), MSG_MAX_HEIGHT);
}
else
{
if (mlistsz.y < MLIST_MIN_HEIGHT)
_increment(mlistsz.y, leftover_rightcol_y(), MLIST_MIN_HEIGHT);
_increment(msgsz.y, leftover_y(), MSG_MAX_HEIGHT);
_increment(mlistsz.y, leftover_rightcol_y(), INT_MAX);
}
// Finish off by doing the positions.
if (Options.messages_at_top)
{
msgp = termp;
viewp = termp + coord_def(0, msgsz.y);
}
else
{
viewp = termp;
msgp = termp + coord_def(0, std::max(viewsz.y, hudsz.y+mlistsz.y));
}
hudp = viewp + coord_def(viewsz.x+hud_gutter, 0);
mlistp = hudp + coord_def(0, hudsz.y);
_assert_validity();
return (true);
}
int leftover_x() const
{
int width = (viewsz.x + hud_gutter + std::max(hudsz.x, mlistsz.x));
return (termsz.x - width);
}
int leftover_rightcol_y() const { return termsz.y-hudsz.y-mlistsz.y-msgsz.y; }
int leftover_leftcol_y() const { return termsz.y-viewsz.y-msgsz.y; }
int leftover_y() const
{
return std::min(leftover_rightcol_y(), leftover_leftcol_y());
}
};
// ll vvvvvvghhh v=view, g=hud gutter, h=hud, l=list, m=msg
// ll vvvvvvghhh
// ll vvvvvv
// mmmmmmmmmmmmm
class _mlist_col_layout : public _layout
{
public:
_mlist_col_layout(coord_def termsz_, coord_def hudsz_)
: _layout(termsz_, hudsz_)
{ valid = _init(); }
bool _init()
{
// Don't let the mlist column steal all the width. Up front,
// take some for the view. If it makes the layout fail, that's fine.
_increment(viewsz.x, MLIST_MIN_WIDTH/2, Options.view_max_width);
// x: View and mlist share leftover; then hud gutter.
if (leftover_x() < 0)
return (false);
_increment(mlistsz.x, leftover_x()/2, MLIST_MAX_WIDTH);
_increment(viewsz.x, leftover_x(), Options.view_max_width);
if ((viewsz.x % 2) != 1)
--viewsz.x;
_increment(mlistsz.x, leftover_x(), MLIST_MAX_WIDTH);
_increment(hud_gutter, leftover_x(), HUD_MAX_GUTTER);
msgsz.x = termsz.x-1; // Can't use last character.
// y: View gets leftover; then message.
if (leftover_y() < 0)
return (false);
_increment(viewsz.y, leftover_y(), Options.view_max_height);
if ((viewsz.y % 2) != 1)
--viewsz.y;
_increment(msgsz.y, leftover_y(), INT_MAX);
mlistsz.y = viewsz.y;
// Finish off by doing the positions.
mlistp = termp;
viewp = mlistp+ coord_def(mlistsz.x+MLIST_GUTTER, 0);
msgp = termp + coord_def(0, viewsz.y);
hudp = viewp + coord_def(viewsz.x+hud_gutter, 0);
_assert_validity();
return (true);
}
private:
int leftover_x() const
{
int width = (mlistsz.x + MLIST_GUTTER + viewsz.x + hud_gutter + hudsz.x);
return (termsz.x - width);
}
int leftover_y() const
{
const int top_y = std::max(std::max(viewsz.y, hudsz.y), mlistsz.y);
const int height = top_y + msgsz.y;
return (termsz.y - height);
}
};
//////////////////////////////////////////////////////////////////////////////
// crawl_view_buffer
crawl_view_buffer::crawl_view_buffer()
: m_size(0, 0)
, m_buffer(NULL)
{
}
crawl_view_buffer::crawl_view_buffer(const coord_def &sz)
: m_size(0, 0)
, m_buffer(NULL)
{
resize(sz);
}
crawl_view_buffer::~crawl_view_buffer()
{
delete [] m_buffer;
}
void crawl_view_buffer::resize(const coord_def &sz)
{
delete [] m_buffer;
m_size = sz;
m_buffer = new screen_cell_t [ sz.x * sz.y ];
}
bool crawl_view_buffer::empty() const
{
return (m_size.x * m_size.y <= 0);
}
const crawl_view_buffer &crawl_view_buffer::operator = (const crawl_view_buffer &rhs)
{
resize(rhs.m_size);
if (rhs.m_buffer)
{
size_t count = sizeof(m_buffer[0]) * m_size.x * m_size.y;
memcpy(m_buffer, rhs.m_buffer, count);
}
return (*this);
}
void crawl_view_buffer::clear()
{
delete [] m_buffer;
m_buffer = NULL;
m_size = coord_def(0,0);
}
// ----------------------------------------------------------------------
// crawl_view_geometry
// ----------------------------------------------------------------------
crawl_view_geometry::crawl_view_geometry()
: termp(1, 1), termsz(80, 24),
viewp(1, 1), viewsz(33, 17),
hudp(40, 1), hudsz(-1, -1),
msgp(1, viewp.y + viewsz.y), msgsz(80, 7),
mlistp(hudp.x, hudp.y + hudsz.y),
mlistsz(hudsz.x, msgp.y - mlistp.y),
vbuf(), vgrdc(), viewhalfsz(), glos1(), glos2(),
vlos1(), vlos2(), mousep(), last_player_pos()
{
}
void crawl_view_geometry::init_view()
{
viewhalfsz = viewsz / 2;
vbuf.resize(viewsz);
set_player_at(you.pos(), true);
}
void crawl_view_geometry::shift_player_to(const coord_def &c)
{
// Preserve vgrdc offset after moving.
const coord_def offset = crawl_view.vgrdc - last_player_pos;
crawl_view.vgrdc = offset + c;
last_player_pos = c;
set_player_at(c);
ASSERT(crawl_view.vgrdc == offset + c);
ASSERT(last_player_pos == c);
}
void crawl_view_geometry::set_player_at(const coord_def &c, bool centre)
{
if (centre)
{
vgrdc = c;
}
else
{
const coord_def oldc = vgrdc;
const int xmarg = Options.scroll_margin_x + LOS_RADIUS <= viewhalfsz.x
? Options.scroll_margin_x
: viewhalfsz.x - LOS_RADIUS;
const int ymarg = Options.scroll_margin_y + LOS_RADIUS <= viewhalfsz.y
? Options.scroll_margin_y
: viewhalfsz.y - LOS_RADIUS;
if (Options.view_lock_x)
vgrdc.x = c.x;
else if (c.x - LOS_RADIUS < vgrdc.x - viewhalfsz.x + xmarg)
vgrdc.x = c.x - LOS_RADIUS + viewhalfsz.x - xmarg;
else if (c.x + LOS_RADIUS > vgrdc.x + viewhalfsz.x - xmarg)
vgrdc.x = c.x + LOS_RADIUS - viewhalfsz.x + xmarg;
if (Options.view_lock_y)
vgrdc.y = c.y;
else if (c.y - LOS_RADIUS < vgrdc.y - viewhalfsz.y + ymarg)
vgrdc.y = c.y - LOS_RADIUS + viewhalfsz.y - ymarg;
else if (c.y + LOS_RADIUS > vgrdc.y + viewhalfsz.y - ymarg)
vgrdc.y = c.y + LOS_RADIUS - viewhalfsz.y + ymarg;
if (vgrdc != oldc && Options.center_on_scroll)
vgrdc = c;
if (!Options.center_on_scroll && Options.symmetric_scroll
&& !Options.view_lock_x
&& !Options.view_lock_y
&& (c - last_player_pos).abs() == 2
&& (vgrdc - oldc).abs() == 1)
{
const coord_def dp = c - last_player_pos;
const coord_def dc = vgrdc - oldc;
if ((dc.x == dp.x) != (dc.y == dp.y))
vgrdc = oldc + dp;
}
}
glos1 = c - coord_def(LOS_RADIUS, LOS_RADIUS);
glos2 = c + coord_def(LOS_RADIUS, LOS_RADIUS);
calc_vlos();
last_player_pos = c;
}
void crawl_view_geometry::init_geometry()
{
termsz = coord_def( get_number_of_cols(), get_number_of_lines() );
hudsz = coord_def(HUD_WIDTH,
HUD_HEIGHT + (Options.show_gold_turns ? 1 : 0));
const _inline_layout lay_inline(termsz, hudsz);
const _mlist_col_layout lay_mlist(termsz, hudsz);
if (! lay_inline.valid)
{
#ifndef USE_TILE
// Terminal too small; exit with an error.
if (!crawl_state.need_save)
{
end(1, false, "Terminal too small (%d,%d); need at least (%d,%d)",
termsz.x, termsz.y,
termsz.x + std::max(0, -lay_inline.leftover_x()),
termsz.y + std::max(0, -lay_inline.leftover_y()));
}
#endif
}
const _layout* winner = &lay_inline;
if (Options.mlist_allow_alternate_layout
&& !Options.classic_hud
&& lay_mlist.valid)
{
winner = &lay_mlist;
}
msgp = winner->msgp;
msgsz = winner->msgsz;
viewp = winner->viewp;
viewsz = winner->viewsz;
hudp = winner->hudp;
hudsz = winner->hudsz;
mlistp = winner->mlistp;
mlistsz = winner->mlistsz;
#ifdef USE_TILE
// libgui may redefine these based on its own settings.
gui_init_view_params(*this);
#endif
init_view();
return;
}
void crawl_view_geometry::calc_vlos()
{
vlos1 = glos1 - vgrdc + view_centre();
vlos2 = glos2 - vgrdc + view_centre();
}
|