64 lines
1.3 KiB
C++
64 lines
1.3 KiB
C++
/*
|
|
* Buffer seek descriptor constructors.
|
|
*/
|
|
|
|
// TOP
|
|
|
|
static Buffer_Seek
|
|
seek_pos(int32_t pos){
|
|
Buffer_Seek result;
|
|
result.type = buffer_seek_pos;
|
|
result.pos = pos;
|
|
return(result);
|
|
}
|
|
|
|
static Buffer_Seek
|
|
seek_character_pos(int32_t pos){
|
|
Buffer_Seek result;
|
|
result.type = buffer_seek_character_pos;
|
|
result.pos = pos;
|
|
return(result);
|
|
}
|
|
|
|
static Buffer_Seek
|
|
seek_wrapped_xy(float x, float y, int32_t round_down){
|
|
Buffer_Seek result;
|
|
result.type = buffer_seek_wrapped_xy;
|
|
result.x = x;
|
|
result.y = y;
|
|
result.round_down = round_down;
|
|
return(result);
|
|
}
|
|
|
|
static Buffer_Seek
|
|
seek_unwrapped_xy(float x, float y, int32_t round_down){
|
|
Buffer_Seek result;
|
|
result.type = buffer_seek_unwrapped_xy;
|
|
result.x = x;
|
|
result.y = y;
|
|
result.round_down = round_down;
|
|
return(result);
|
|
}
|
|
|
|
static Buffer_Seek
|
|
seek_xy(float x, float y, bool32 round_down, bool32 unwrapped){
|
|
Buffer_Seek result;
|
|
result.type = unwrapped?buffer_seek_unwrapped_xy:buffer_seek_wrapped_xy;
|
|
result.x = x;
|
|
result.y = y;
|
|
result.round_down = round_down;
|
|
return(result);
|
|
}
|
|
|
|
static Buffer_Seek
|
|
seek_line_char(int32_t line, int32_t character){
|
|
Buffer_Seek result;
|
|
result.type = buffer_seek_line_char;
|
|
result.line = line;
|
|
result.character = character;
|
|
return(result);
|
|
}
|
|
|
|
// BOTTOM
|
|
|