2016-09-21 22:34:19 +00:00
|
|
|
/*
|
|
|
|
* Mr. 4th Dimention - Allen Webster
|
|
|
|
*
|
2017-01-07 02:59:55 +00:00
|
|
|
* 06.01.2017
|
2016-09-21 22:34:19 +00:00
|
|
|
*
|
2017-01-07 02:59:55 +00:00
|
|
|
* The 4coder base buffer data structure.
|
2016-09-21 22:34:19 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
// TOP
|
|
|
|
|
2017-01-07 02:59:55 +00:00
|
|
|
//
|
|
|
|
// Buffer low level operations
|
|
|
|
//
|
2016-09-21 22:34:19 +00:00
|
|
|
|
2017-03-23 23:40:16 +00:00
|
|
|
#include "4ed_font_data.h"
|
2017-03-18 18:43:30 +00:00
|
|
|
#include "4coder_helper/4coder_seek_types.h"
|
2017-01-07 02:59:55 +00:00
|
|
|
|
2017-07-18 22:34:57 +00:00
|
|
|
struct Cursor_With_Index{
|
2017-03-23 19:15:33 +00:00
|
|
|
i32 pos;
|
2017-01-07 02:59:55 +00:00
|
|
|
i32 index;
|
2017-07-18 22:34:57 +00:00
|
|
|
};
|
2017-01-07 02:59:55 +00:00
|
|
|
|
|
|
|
inline void
|
2017-03-23 19:15:33 +00:00
|
|
|
write_cursor_with_index(Cursor_With_Index *positions, i32 *count, i32 pos){
|
2017-01-07 02:59:55 +00:00
|
|
|
positions[(*count)].index = *count;
|
|
|
|
positions[(*count)].pos = pos;
|
|
|
|
++(*count);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define CursorSwap__(a,b) { Cursor_With_Index t = a; a = b; b = t; }
|
|
|
|
|
|
|
|
internal void
|
|
|
|
buffer_quick_sort_cursors(Cursor_With_Index *positions, i32 start, i32 pivot){
|
|
|
|
i32 mid = start;
|
2017-03-23 19:15:33 +00:00
|
|
|
i32 pivot_pos = positions[pivot].pos;
|
2017-01-07 02:59:55 +00:00
|
|
|
for (i32 i = mid; i < pivot; ++i){
|
|
|
|
if (positions[i].pos < pivot_pos){
|
|
|
|
CursorSwap__(positions[mid], positions[i]);
|
|
|
|
++mid;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
CursorSwap__(positions[mid], positions[pivot]);
|
|
|
|
|
|
|
|
if (start < mid - 1) buffer_quick_sort_cursors(positions, start, mid - 1);
|
|
|
|
if (mid + 1 < pivot) buffer_quick_sort_cursors(positions, mid + 1, pivot);
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO(allen): Rewrite this without being a dumbass.
|
|
|
|
internal void
|
|
|
|
buffer_quick_unsort_cursors(Cursor_With_Index *positions, i32 start, i32 pivot){
|
|
|
|
i32 mid = start;
|
|
|
|
i32 pivot_index = positions[pivot].index;
|
|
|
|
for (i32 i = mid; i < pivot; ++i){
|
|
|
|
if (positions[i].index < pivot_index){
|
|
|
|
CursorSwap__(positions[mid], positions[i]);
|
|
|
|
++mid;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
CursorSwap__(positions[mid], positions[pivot]);
|
|
|
|
|
|
|
|
if (start < mid - 1) buffer_quick_unsort_cursors(positions, start, mid - 1);
|
|
|
|
if (mid + 1 < pivot) buffer_quick_unsort_cursors(positions, mid + 1, pivot);
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef CursorSwap__
|
|
|
|
|
|
|
|
inline void
|
|
|
|
buffer_sort_cursors(Cursor_With_Index *positions, i32 count){
|
2017-07-10 14:51:19 +00:00
|
|
|
Assert(count > 0);
|
2017-01-07 02:59:55 +00:00
|
|
|
buffer_quick_sort_cursors(positions, 0, count-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void
|
|
|
|
buffer_unsort_cursors(Cursor_With_Index *positions, i32 count){
|
2017-07-10 14:51:19 +00:00
|
|
|
Assert(count > 0);
|
2017-01-07 02:59:55 +00:00
|
|
|
buffer_quick_unsort_cursors(positions, 0, count-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
internal void
|
2017-03-23 19:15:05 +00:00
|
|
|
buffer_update_cursors(Cursor_With_Index *sorted_positions, i32 count, i32 start, i32 end, i32 len, b32 lean_right){
|
2017-01-07 02:59:55 +00:00
|
|
|
i32 shift_amount = (len - (end - start));
|
|
|
|
Cursor_With_Index *position = sorted_positions + count - 1;
|
|
|
|
|
2017-02-24 02:30:29 +00:00
|
|
|
if (lean_right){
|
|
|
|
for (; position >= sorted_positions && position->pos > end; --position){
|
|
|
|
position->pos += shift_amount;
|
|
|
|
}
|
|
|
|
for (; position >= sorted_positions && position->pos >= start; --position){
|
|
|
|
position->pos = start + len;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
for (; position >= sorted_positions && position->pos > end; --position){
|
|
|
|
position->pos += shift_amount;
|
|
|
|
}
|
|
|
|
for (; position >= sorted_positions && position->pos >= start; --position){
|
|
|
|
position->pos = start;
|
|
|
|
}
|
|
|
|
}
|
2017-01-07 02:59:55 +00:00
|
|
|
}
|
|
|
|
|
2017-03-23 19:15:33 +00:00
|
|
|
internal i32
|
|
|
|
buffer_batch_debug_sort_check(Buffer_Edit *sorted_edits, i32 edit_count){
|
2017-03-20 06:35:39 +00:00
|
|
|
Buffer_Edit *edit = sorted_edits;
|
2017-03-23 19:15:33 +00:00
|
|
|
i32 i = 0, start_point = 0;
|
|
|
|
i32 result = 1;
|
|
|
|
|
|
|
|
for (i = 0; i < edit_count; ++i, ++edit){
|
2017-01-07 02:59:55 +00:00
|
|
|
if (start_point > edit->start){
|
2017-03-23 19:15:33 +00:00
|
|
|
result = 0; break;
|
2017-01-07 02:59:55 +00:00
|
|
|
}
|
|
|
|
start_point = (edit->end < edit->start + 1)?(edit->start + 1):(edit->end);
|
|
|
|
}
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
internal i32
|
2017-03-23 19:15:33 +00:00
|
|
|
buffer_batch_edit_max_shift(Buffer_Edit *sorted_edits, i32 edit_count){
|
|
|
|
i32 i = 0;
|
2017-03-20 06:35:39 +00:00
|
|
|
i32 shift_total = 0, shift_max = 0;
|
2017-03-23 19:15:33 +00:00
|
|
|
|
|
|
|
Buffer_Edit *edit = sorted_edits;
|
|
|
|
for (i = 0; i < edit_count; ++i, ++edit){
|
|
|
|
shift_total += (edit->len - (edit->end - edit->start));
|
2017-02-24 02:30:29 +00:00
|
|
|
if (shift_total > shift_max){
|
|
|
|
shift_max = shift_total;
|
|
|
|
}
|
2017-01-07 02:59:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return(shift_max);
|
|
|
|
}
|
|
|
|
|
|
|
|
internal i32
|
2017-03-23 19:15:05 +00:00
|
|
|
buffer_batch_edit_update_cursors(Cursor_With_Index *sorted_positions, i32 count, Buffer_Edit *sorted_edits, i32 edit_count, b32 lean_right){
|
2017-01-07 02:59:55 +00:00
|
|
|
Cursor_With_Index *position = sorted_positions;
|
|
|
|
Cursor_With_Index *end_position = sorted_positions + count;
|
|
|
|
Buffer_Edit *edit = sorted_edits;
|
|
|
|
Buffer_Edit *end_edit = sorted_edits + edit_count;
|
|
|
|
i32 shift_amount = 0;
|
|
|
|
|
2017-02-24 02:30:29 +00:00
|
|
|
if (lean_right){
|
|
|
|
for (; edit < end_edit && position < end_position; ++edit){
|
2017-03-23 19:15:33 +00:00
|
|
|
i32 start = edit->start;
|
|
|
|
i32 end = edit->end;
|
2017-02-24 02:30:29 +00:00
|
|
|
|
|
|
|
for (; position->pos < start && position < end_position; ++position){
|
|
|
|
position->pos += shift_amount;
|
|
|
|
}
|
|
|
|
|
2017-03-23 19:15:33 +00:00
|
|
|
i32 new_end = start + edit->len + shift_amount;
|
2017-02-24 02:30:29 +00:00
|
|
|
for (; position->pos <= end && position < end_position; ++position){
|
|
|
|
position->pos = new_end;
|
|
|
|
}
|
|
|
|
|
2017-03-23 19:15:33 +00:00
|
|
|
shift_amount += (edit->len - (end - start));
|
2017-01-07 02:59:55 +00:00
|
|
|
}
|
2017-02-24 02:30:29 +00:00
|
|
|
}
|
|
|
|
else{
|
|
|
|
for (; edit < end_edit && position < end_position; ++edit){
|
2017-03-23 19:15:33 +00:00
|
|
|
i32 start = edit->start;
|
|
|
|
i32 end = edit->end;
|
2017-02-24 02:30:29 +00:00
|
|
|
|
|
|
|
for (; position->pos < start && position < end_position; ++position){
|
|
|
|
position->pos += shift_amount;
|
|
|
|
}
|
|
|
|
|
2017-03-23 19:15:33 +00:00
|
|
|
i32 new_end = start + shift_amount;
|
2017-02-24 02:30:29 +00:00
|
|
|
for (; position->pos <= end && position < end_position; ++position){
|
|
|
|
position->pos = new_end;
|
|
|
|
}
|
|
|
|
|
2017-03-23 19:15:33 +00:00
|
|
|
shift_amount += (edit->len - (end - start));
|
2017-01-07 02:59:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (; position < end_position; ++position){
|
|
|
|
position->pos += shift_amount;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (; edit < end_edit; ++edit){
|
2017-03-23 19:15:33 +00:00
|
|
|
shift_amount += (edit->len - (edit->end - edit->start));
|
2017-01-07 02:59:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return(shift_amount);
|
|
|
|
}
|
|
|
|
|
2017-03-18 19:24:16 +00:00
|
|
|
//////////////////////////////////////
|
|
|
|
|
2017-03-23 19:16:39 +00:00
|
|
|
internal i32
|
|
|
|
eol_convert_in(char *dest, char *src, i32 size){
|
|
|
|
i32 i = 0, j = 0, k = 0;
|
2017-01-07 02:59:55 +00:00
|
|
|
|
|
|
|
for (; j < size && src[j] != '\r'; ++j);
|
|
|
|
memcpy(dest, src, j);
|
|
|
|
|
|
|
|
if (j < size){
|
|
|
|
k = 1;
|
|
|
|
++j;
|
|
|
|
for (i = j; i < size; ++i){
|
|
|
|
if (src[i] == '\r'){
|
|
|
|
memcpy(dest + j - k, src + j, i - j);
|
|
|
|
++k;
|
|
|
|
j = i+1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
memcpy(dest + j - k, src + j, i - j);
|
|
|
|
j = i - k;
|
|
|
|
}
|
|
|
|
|
|
|
|
return(j);
|
|
|
|
}
|
|
|
|
|
2017-03-23 19:16:39 +00:00
|
|
|
internal i32
|
|
|
|
eol_in_place_convert_in(char *data, i32 size){
|
|
|
|
i32 i = 0, j = 0, k = 0;
|
2017-01-07 02:59:55 +00:00
|
|
|
|
|
|
|
for (; j < size && data[j] != '\r'; ++j);
|
|
|
|
|
|
|
|
if (j < size){
|
|
|
|
k = 1;
|
|
|
|
++j;
|
|
|
|
for (i = j; i < size; ++i){
|
|
|
|
if (data[i] == '\r'){
|
|
|
|
memmove(data + j - k, data + j, i - j);
|
|
|
|
++k;
|
|
|
|
j = i+1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
memmove(data + j - k, data + j, i - j);
|
|
|
|
j = i - k;
|
|
|
|
}
|
|
|
|
|
|
|
|
return(j);
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO(allen): iterative memory check?
|
2017-03-23 19:16:39 +00:00
|
|
|
internal i32
|
|
|
|
eol_convert_out(char *dest, i32 max, char *src, i32 size, i32 *size_out){
|
|
|
|
i32 result = 1;
|
|
|
|
i32 i = 0, j = 0;
|
2017-01-07 02:59:55 +00:00
|
|
|
|
|
|
|
for (; i < size; ++i, ++j){
|
|
|
|
if (src[i] == '\n'){
|
|
|
|
dest[j] = '\r';
|
|
|
|
++j;
|
|
|
|
dest[j] = '\n';
|
|
|
|
}
|
2017-03-23 19:16:39 +00:00
|
|
|
else dest[j] = src[i];
|
2017-01-07 02:59:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
*size_out = j;
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO(allen): iterative memory check?
|
2017-03-23 19:16:39 +00:00
|
|
|
internal i32
|
|
|
|
eol_in_place_convert_out(char *data, i32 size, i32 max, i32 *size_out){
|
|
|
|
i32 result = 1;
|
|
|
|
i32 i = 0;
|
2017-01-07 02:59:55 +00:00
|
|
|
|
|
|
|
for (; i < size; ++i){
|
|
|
|
if (data[i] == '\n'){
|
|
|
|
memmove(data + i + 1, data + i, size - i);
|
|
|
|
data[i] = '\r';
|
|
|
|
++i;
|
|
|
|
++size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*size_out = size;
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2017-03-18 19:24:16 +00:00
|
|
|
//////////////////////////////////////
|
|
|
|
|
2017-01-07 02:59:55 +00:00
|
|
|
//
|
|
|
|
// Implementation of the gap buffer
|
|
|
|
//
|
|
|
|
|
2017-07-18 22:34:57 +00:00
|
|
|
struct Gap_Buffer{
|
2017-01-07 02:59:55 +00:00
|
|
|
char *data;
|
2017-03-23 19:16:39 +00:00
|
|
|
i32 size1;
|
|
|
|
i32 gap_size;
|
|
|
|
i32 size2;
|
|
|
|
i32 max;
|
|
|
|
|
|
|
|
i32 *line_starts;
|
|
|
|
i32 line_count;
|
|
|
|
i32 line_max;
|
2017-07-18 22:34:57 +00:00
|
|
|
};
|
2017-01-07 02:59:55 +00:00
|
|
|
|
2017-03-23 19:16:39 +00:00
|
|
|
inline i32
|
2017-01-07 02:59:55 +00:00
|
|
|
buffer_good(Gap_Buffer *buffer){
|
2017-03-23 19:16:39 +00:00
|
|
|
i32 good = (buffer->data != 0);
|
2017-01-07 02:59:55 +00:00
|
|
|
return(good);
|
|
|
|
}
|
|
|
|
|
2017-03-23 19:16:39 +00:00
|
|
|
inline i32
|
2017-03-20 06:35:39 +00:00
|
|
|
buffer_size(Gap_Buffer *buffer){
|
2017-03-23 19:16:39 +00:00
|
|
|
i32 size = buffer->size1 + buffer->size2;
|
2017-03-23 19:15:33 +00:00
|
|
|
return(size);
|
2017-03-20 06:35:39 +00:00
|
|
|
}
|
|
|
|
|
2017-07-18 22:34:57 +00:00
|
|
|
struct Gap_Buffer_Init{
|
2017-01-07 02:59:55 +00:00
|
|
|
Gap_Buffer *buffer;
|
|
|
|
char *data;
|
2017-03-23 19:16:39 +00:00
|
|
|
i32 size;
|
2017-07-18 22:34:57 +00:00
|
|
|
};
|
2017-01-07 02:59:55 +00:00
|
|
|
|
|
|
|
internal Gap_Buffer_Init
|
2017-03-23 19:14:39 +00:00
|
|
|
buffer_begin_init(Gap_Buffer *buffer, char *data, i32 size){
|
2017-01-07 02:59:55 +00:00
|
|
|
Gap_Buffer_Init init;
|
|
|
|
init.buffer = buffer;
|
|
|
|
init.data = data;
|
|
|
|
init.size = size;
|
|
|
|
return(init);
|
|
|
|
}
|
|
|
|
|
2017-03-23 19:16:39 +00:00
|
|
|
internal i32
|
2017-01-07 02:59:55 +00:00
|
|
|
buffer_init_need_more(Gap_Buffer_Init *init){
|
2017-03-23 19:16:39 +00:00
|
|
|
i32 result = 1;
|
|
|
|
if (init->buffer->data) result = 0;
|
2017-01-07 02:59:55 +00:00
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2017-03-23 19:16:39 +00:00
|
|
|
internal i32
|
2017-01-07 02:59:55 +00:00
|
|
|
buffer_init_page_size(Gap_Buffer_Init *init){
|
2017-03-23 19:16:39 +00:00
|
|
|
i32 result = init->size * 2;
|
2017-01-07 02:59:55 +00:00
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
internal void
|
2017-03-23 19:15:33 +00:00
|
|
|
buffer_init_provide_page(Gap_Buffer_Init *init, void *page, i32 page_size){
|
2017-01-07 02:59:55 +00:00
|
|
|
Gap_Buffer *buffer = init->buffer;
|
|
|
|
buffer->data = (char*)page;
|
|
|
|
buffer->max = page_size;
|
|
|
|
}
|
|
|
|
|
2017-03-18 19:24:16 +00:00
|
|
|
internal b32
|
2017-03-23 19:16:39 +00:00
|
|
|
buffer_end_init(Gap_Buffer_Init *init, void *scratch, i32 scratch_size){
|
2017-01-07 02:59:55 +00:00
|
|
|
Gap_Buffer *buffer = init->buffer;
|
2017-03-18 19:24:16 +00:00
|
|
|
b32 result = false;
|
2017-01-07 02:59:55 +00:00
|
|
|
|
2017-03-23 19:14:39 +00:00
|
|
|
if (buffer->data && buffer->max >= init->size){
|
2017-03-23 19:16:39 +00:00
|
|
|
i32 size = init->size;
|
|
|
|
i32 size2 = size >> 1;
|
|
|
|
i32 osize1 = size - size2;
|
|
|
|
i32 size1 = osize1;
|
2017-03-18 19:24:16 +00:00
|
|
|
|
|
|
|
if (size1 > 0){
|
|
|
|
size1 = eol_convert_in(buffer->data, init->data, size1);
|
|
|
|
if (size2 > 0){
|
|
|
|
size2 = eol_convert_in(buffer->data + size1, init->data + osize1, size2);
|
2017-01-07 02:59:55 +00:00
|
|
|
}
|
|
|
|
}
|
2017-03-18 19:24:16 +00:00
|
|
|
|
|
|
|
buffer->size1 = size1;
|
|
|
|
buffer->size2 = size2;
|
|
|
|
buffer->gap_size = buffer->max - size1 - size2;
|
|
|
|
memmove(buffer->data + size1 + buffer->gap_size, buffer->data + size1, size2);
|
|
|
|
|
|
|
|
result = true;
|
2017-01-07 02:59:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2017-07-18 22:34:57 +00:00
|
|
|
struct Gap_Buffer_Stream{
|
2017-01-07 02:59:55 +00:00
|
|
|
Gap_Buffer *buffer;
|
|
|
|
char *data;
|
2017-03-23 19:16:39 +00:00
|
|
|
i32 end;
|
|
|
|
i32 separated;
|
|
|
|
i32 absolute_end;
|
|
|
|
|
2017-01-07 02:59:55 +00:00
|
|
|
b32 use_termination_character;
|
|
|
|
char terminator;
|
2017-07-18 22:34:57 +00:00
|
|
|
};
|
|
|
|
global Gap_Buffer_Stream null_buffer_stream = {0};
|
2017-01-07 02:59:55 +00:00
|
|
|
|
|
|
|
internal b32
|
2017-03-23 19:16:39 +00:00
|
|
|
buffer_stringify_loop(Gap_Buffer_Stream *stream, Gap_Buffer *buffer, i32 start, i32 end){
|
|
|
|
b32 result = 0;
|
2017-01-07 02:59:55 +00:00
|
|
|
|
|
|
|
if (0 <= start && start < end && end <= buffer->size1 + buffer->size2){
|
|
|
|
stream->buffer = buffer;
|
|
|
|
stream->absolute_end = end;
|
|
|
|
|
|
|
|
if (start < buffer->size1){
|
|
|
|
if (buffer->size1 < end){
|
2017-03-23 19:16:39 +00:00
|
|
|
stream->separated = 1;
|
2017-01-07 02:59:55 +00:00
|
|
|
}
|
|
|
|
else{
|
2017-03-23 19:16:39 +00:00
|
|
|
stream->separated = 0;
|
2017-01-07 02:59:55 +00:00
|
|
|
}
|
|
|
|
stream->data = buffer->data;
|
|
|
|
}
|
|
|
|
else{
|
2017-03-23 19:16:39 +00:00
|
|
|
stream->separated = 0;
|
2017-01-07 02:59:55 +00:00
|
|
|
stream->data = buffer->data + buffer->gap_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (stream->separated){
|
|
|
|
stream->end = buffer->size1;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
stream->end = end;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (stream->end > stream->absolute_end){
|
|
|
|
stream->end = stream->absolute_end;
|
|
|
|
}
|
|
|
|
|
2017-03-23 19:16:39 +00:00
|
|
|
result = 1;
|
2017-01-07 02:59:55 +00:00
|
|
|
}
|
|
|
|
|
2017-03-23 19:16:39 +00:00
|
|
|
if (result == 0){
|
2017-01-07 02:59:55 +00:00
|
|
|
if (stream->use_termination_character){
|
|
|
|
stream->buffer = buffer;
|
|
|
|
stream->absolute_end = end;
|
2017-03-23 19:16:39 +00:00
|
|
|
stream->use_termination_character = 0;
|
2017-01-07 02:59:55 +00:00
|
|
|
stream->data = (&stream->terminator) - buffer->size1 - buffer->size2;
|
|
|
|
stream->end = stream->absolute_end + 1;
|
2017-03-23 19:16:39 +00:00
|
|
|
result = 1;
|
2017-01-07 02:59:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
internal b32
|
|
|
|
buffer_stringify_next(Gap_Buffer_Stream *stream){
|
2017-03-23 19:16:39 +00:00
|
|
|
b32 result = 0;
|
2017-01-07 02:59:55 +00:00
|
|
|
Gap_Buffer *buffer = stream->buffer;
|
|
|
|
if (stream->separated){
|
|
|
|
stream->data = buffer->data + buffer->gap_size;
|
|
|
|
stream->end = stream->absolute_end;
|
2017-03-23 19:16:39 +00:00
|
|
|
stream->separated = 0;
|
|
|
|
result = 1;
|
2017-01-07 02:59:55 +00:00
|
|
|
}
|
|
|
|
|
2017-03-23 19:16:39 +00:00
|
|
|
if (result == 0){
|
2017-01-07 02:59:55 +00:00
|
|
|
if (stream->use_termination_character){
|
2017-03-23 19:16:39 +00:00
|
|
|
stream->use_termination_character = 0;
|
2017-01-07 02:59:55 +00:00
|
|
|
stream->data = (&stream->terminator) - buffer->size1 - buffer->size2;
|
|
|
|
stream->end = stream->absolute_end + 1;
|
2017-03-23 19:16:39 +00:00
|
|
|
result = 1;
|
2017-01-07 02:59:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2017-03-23 19:16:39 +00:00
|
|
|
internal i32
|
|
|
|
buffer_replace_range(Gap_Buffer *buffer, i32 start, i32 end, char *str, i32 len, i32 *shift_amount,
|
|
|
|
void *scratch, i32 scratch_memory, i32 *request_amount){
|
2017-01-07 02:59:55 +00:00
|
|
|
char *data = buffer->data;
|
2017-03-23 19:16:39 +00:00
|
|
|
i32 size = buffer_size(buffer);
|
|
|
|
i32 result = 0;
|
|
|
|
i32 move_size = 0;
|
2017-01-07 02:59:55 +00:00
|
|
|
|
2017-07-10 14:51:19 +00:00
|
|
|
Assert(0 <= start);
|
|
|
|
Assert(start <= end);
|
|
|
|
Assert(end <= size);
|
2017-01-07 02:59:55 +00:00
|
|
|
|
2017-03-23 19:16:39 +00:00
|
|
|
*shift_amount = (len - (end - start));
|
|
|
|
if (*shift_amount + size <= buffer->max){
|
|
|
|
if (end < buffer->size1){
|
|
|
|
move_size = buffer->size1 - end;
|
|
|
|
memmove(data + buffer->size1 + buffer->gap_size - move_size, data + end, move_size);
|
|
|
|
buffer->size1 -= move_size;
|
|
|
|
buffer->size2 += move_size;
|
2017-01-07 02:59:55 +00:00
|
|
|
}
|
2017-03-23 19:16:39 +00:00
|
|
|
if (start > buffer->size1){
|
|
|
|
move_size = start - buffer->size1;
|
|
|
|
memmove(data + buffer->size1, data + buffer->size1 + buffer->gap_size, move_size);
|
|
|
|
buffer->size1 += move_size;
|
|
|
|
buffer->size2 -= move_size;
|
2017-01-07 02:59:55 +00:00
|
|
|
}
|
|
|
|
|
2017-03-23 19:16:39 +00:00
|
|
|
memcpy(data + start, str, len);
|
|
|
|
buffer->size2 = size - end;
|
|
|
|
buffer->size1 = start + len;
|
|
|
|
buffer->gap_size -= *shift_amount;
|
|
|
|
|
2017-07-10 14:51:19 +00:00
|
|
|
Assert(buffer->size1 + buffer->size2 == size + *shift_amount);
|
|
|
|
Assert(buffer->size1 + buffer->gap_size + buffer->size2 == buffer->max);
|
2017-03-23 19:16:39 +00:00
|
|
|
}
|
|
|
|
else{
|
|
|
|
*request_amount = l_round_up_i32(2*(*shift_amount + size), 4 << 10);
|
|
|
|
result = 1;
|
2017-01-07 02:59:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2017-07-18 22:34:57 +00:00
|
|
|
struct Buffer_Batch_State{
|
2017-03-23 19:16:39 +00:00
|
|
|
i32 i;
|
2017-01-07 02:59:55 +00:00
|
|
|
i32 shift_total;
|
2017-07-18 22:34:57 +00:00
|
|
|
};
|
2017-01-07 02:59:55 +00:00
|
|
|
|
2017-03-23 19:16:39 +00:00
|
|
|
// TODO(allen): Now that we are just using Gap_Buffer we could afford to improve
|
|
|
|
// this for the Gap_Buffer's behavior.
|
|
|
|
internal i32
|
|
|
|
buffer_batch_edit_step(Buffer_Batch_State *state, Gap_Buffer *buffer, Buffer_Edit *sorted_edits, char *strings, i32 edit_count, void *scratch, i32 scratch_size, i32 *request_amount){
|
2017-01-07 02:59:55 +00:00
|
|
|
Buffer_Edit *edit = 0;
|
2017-03-23 19:16:39 +00:00
|
|
|
i32 i = state->i;
|
2017-01-07 02:59:55 +00:00
|
|
|
i32 shift_total = state->shift_total;
|
|
|
|
i32 shift_amount = 0;
|
2017-03-23 19:16:39 +00:00
|
|
|
i32 result = 0;
|
2017-01-07 02:59:55 +00:00
|
|
|
|
|
|
|
edit = sorted_edits + i;
|
|
|
|
for (; i < edit_count; ++i, ++edit){
|
2017-03-23 19:16:39 +00:00
|
|
|
result = buffer_replace_range(buffer, edit->start + shift_total, edit->end + shift_total,
|
|
|
|
strings + edit->str_start, edit->len, &shift_amount,
|
|
|
|
scratch, scratch_size, request_amount);
|
|
|
|
if (result) break;
|
2017-01-07 02:59:55 +00:00
|
|
|
shift_total += shift_amount;
|
|
|
|
}
|
|
|
|
|
|
|
|
state->shift_total = shift_total;
|
|
|
|
state->i = i;
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
internal void*
|
2017-03-23 19:16:39 +00:00
|
|
|
buffer_edit_provide_memory(Gap_Buffer *buffer, void *new_data, i32 new_max){
|
2017-01-07 02:59:55 +00:00
|
|
|
void *result = buffer->data;
|
2017-03-23 19:16:39 +00:00
|
|
|
i32 size = buffer_size(buffer);
|
|
|
|
i32 new_gap_size = new_max - size;
|
2017-01-07 02:59:55 +00:00
|
|
|
|
2017-07-10 14:51:19 +00:00
|
|
|
Assert(new_max >= size);
|
2017-01-07 02:59:55 +00:00
|
|
|
|
|
|
|
memcpy(new_data, buffer->data, buffer->size1);
|
|
|
|
memcpy((char*)new_data + buffer->size1 + new_gap_size, buffer->data + buffer->size1 + buffer->gap_size, buffer->size2);
|
|
|
|
|
|
|
|
buffer->data = (char*)new_data;
|
|
|
|
buffer->gap_size = new_gap_size;
|
|
|
|
buffer->max = new_max;
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// High level buffer operations
|
|
|
|
//
|
|
|
|
|
|
|
|
inline void
|
2017-03-23 19:16:39 +00:00
|
|
|
buffer_stringify(Gap_Buffer *buffer, i32 start, i32 end, char *out){
|
2017-01-07 02:59:55 +00:00
|
|
|
Gap_Buffer_Stream stream = {0};
|
2016-09-23 01:57:28 +00:00
|
|
|
|
2017-03-23 19:16:39 +00:00
|
|
|
i32 i = start;
|
2016-09-23 01:57:28 +00:00
|
|
|
if (buffer_stringify_loop(&stream, buffer, i, end)){
|
2017-03-23 19:16:39 +00:00
|
|
|
b32 still_looping = 0;
|
2016-09-23 01:57:28 +00:00
|
|
|
do{
|
2017-03-23 19:16:39 +00:00
|
|
|
i32 size = stream.end - i;
|
2017-01-07 02:59:55 +00:00
|
|
|
memcpy(out, stream.data + i, size);
|
2016-09-23 01:57:28 +00:00
|
|
|
i = stream.end;
|
|
|
|
out += size;
|
|
|
|
still_looping = buffer_stringify_next(&stream);
|
|
|
|
}while(still_looping);
|
2016-09-21 22:34:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-23 19:16:39 +00:00
|
|
|
internal i32
|
|
|
|
buffer_convert_out(Gap_Buffer *buffer, char *dest, i32 max){
|
2017-01-07 02:59:55 +00:00
|
|
|
Gap_Buffer_Stream stream = {0};
|
2017-03-23 19:16:39 +00:00
|
|
|
i32 i = 0;
|
|
|
|
i32 size = buffer_size(buffer);
|
2017-07-10 14:51:19 +00:00
|
|
|
Assert(size + buffer->line_count <= max);
|
2016-09-21 22:34:19 +00:00
|
|
|
|
2017-03-23 19:16:39 +00:00
|
|
|
i32 pos = 0;
|
2016-09-23 01:57:28 +00:00
|
|
|
if (buffer_stringify_loop(&stream, buffer, 0, size)){
|
2017-03-23 19:16:39 +00:00
|
|
|
b32 still_looping = 0;
|
2016-09-23 01:57:28 +00:00
|
|
|
do{
|
2017-03-23 19:16:39 +00:00
|
|
|
i32 chunk_size = stream.end - i;
|
|
|
|
i32 out_size = 0;
|
2017-03-23 19:15:33 +00:00
|
|
|
i32 result = eol_convert_out(dest + pos, max - pos, stream.data + i, chunk_size, &out_size);
|
2017-07-10 14:51:19 +00:00
|
|
|
Assert(result);
|
2016-09-23 01:57:28 +00:00
|
|
|
i = stream.end;
|
|
|
|
pos += out_size;
|
|
|
|
still_looping = buffer_stringify_next(&stream);
|
|
|
|
}while(still_looping);
|
2016-09-21 22:34:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return(pos);
|
|
|
|
}
|
|
|
|
|
2017-03-23 19:15:33 +00:00
|
|
|
internal i32
|
|
|
|
buffer_count_newlines(Gap_Buffer *buffer, i32 start, i32 end){
|
2017-01-07 02:59:55 +00:00
|
|
|
Gap_Buffer_Stream stream = {0};
|
2017-03-23 19:15:33 +00:00
|
|
|
i32 i = start;
|
|
|
|
i32 count = 0;
|
2016-09-21 22:34:19 +00:00
|
|
|
|
2017-07-10 14:51:19 +00:00
|
|
|
Assert(0 <= start);
|
|
|
|
Assert(start <= end);
|
|
|
|
Assert(end <= buffer_size(buffer));
|
2016-09-21 22:34:19 +00:00
|
|
|
|
2016-09-23 01:57:28 +00:00
|
|
|
if (buffer_stringify_loop(&stream, buffer, i, end)){
|
|
|
|
b32 still_looping = 0;
|
|
|
|
do{
|
|
|
|
for (; i < stream.end; ++i){
|
|
|
|
count += (stream.data[i] == '\n');
|
|
|
|
}
|
|
|
|
still_looping = buffer_stringify_next(&stream);
|
|
|
|
}while(still_looping);
|
2016-09-21 22:34:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return(count);
|
|
|
|
}
|
|
|
|
|
2017-07-18 22:34:57 +00:00
|
|
|
struct Buffer_Measure_Starts{
|
2017-03-23 19:16:39 +00:00
|
|
|
i32 i;
|
|
|
|
i32 count;
|
|
|
|
i32 start;
|
2017-07-18 22:34:57 +00:00
|
|
|
};
|
2016-09-21 22:34:19 +00:00
|
|
|
|
|
|
|
// TODO(allen): Rewrite this with a duff routine
|
2016-09-22 21:25:52 +00:00
|
|
|
// Also make it so that the array goes one past the end
|
|
|
|
// and stores the size in the extra spot.
|
2017-03-23 19:16:39 +00:00
|
|
|
internal i32
|
2017-01-07 02:59:55 +00:00
|
|
|
buffer_measure_starts(Buffer_Measure_Starts *state, Gap_Buffer *buffer){
|
|
|
|
Gap_Buffer_Stream stream = {0};
|
2017-03-23 19:16:39 +00:00
|
|
|
i32 size = buffer_size(buffer);
|
|
|
|
i32 start = state->start, i = state->i;
|
|
|
|
i32 *start_ptr = buffer->line_starts + state->count;
|
|
|
|
i32 *start_end = buffer->line_starts + buffer->line_max;
|
|
|
|
i32 result = 1;
|
2016-09-23 01:57:28 +00:00
|
|
|
|
|
|
|
if (buffer_stringify_loop(&stream, buffer, i, size)){
|
|
|
|
b32 still_looping = 0;
|
|
|
|
do{
|
|
|
|
for (; i < stream.end; ++i){
|
|
|
|
char ch = stream.data[i];
|
|
|
|
if (ch == '\n'){
|
|
|
|
if (start_ptr == start_end){
|
|
|
|
goto buffer_measure_starts_widths_end;
|
|
|
|
}
|
|
|
|
|
|
|
|
*start_ptr++ = start;
|
|
|
|
start = i + 1;
|
2016-09-21 22:34:19 +00:00
|
|
|
}
|
|
|
|
}
|
2016-09-23 01:57:28 +00:00
|
|
|
still_looping = buffer_stringify_next(&stream);
|
|
|
|
}while(still_looping);
|
2016-09-21 22:34:19 +00:00
|
|
|
}
|
2017-03-23 19:16:39 +00:00
|
|
|
|
2017-07-10 14:51:19 +00:00
|
|
|
Assert(i == size);
|
2017-03-23 19:16:39 +00:00
|
|
|
|
2016-09-21 22:34:19 +00:00
|
|
|
if (start_ptr == start_end){
|
|
|
|
goto buffer_measure_starts_widths_end;
|
|
|
|
}
|
|
|
|
*start_ptr++ = start;
|
2017-03-23 19:16:39 +00:00
|
|
|
result = 0;
|
2016-09-21 22:34:19 +00:00
|
|
|
|
|
|
|
buffer_measure_starts_widths_end:;
|
|
|
|
state->i = i;
|
|
|
|
state->count = (i32)(start_ptr - buffer->line_starts);
|
|
|
|
state->start = start;
|
|
|
|
|
2016-10-22 15:30:25 +00:00
|
|
|
if (!result){
|
|
|
|
buffer->line_count = state->count;
|
|
|
|
}
|
|
|
|
|
2016-09-21 22:34:19 +00:00
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2017-01-07 02:59:55 +00:00
|
|
|
internal void
|
2017-03-23 19:16:39 +00:00
|
|
|
buffer_measure_character_starts(System_Functions *system, Render_Font *font, Gap_Buffer *buffer, i32 *character_starts, i32 mode, i32 virtual_white){
|
2017-03-29 20:50:29 +00:00
|
|
|
PRFL_FUNC_GROUP();
|
|
|
|
|
2017-07-10 14:51:19 +00:00
|
|
|
Assert(mode == 0);
|
2016-09-24 15:26:36 +00:00
|
|
|
|
2017-01-07 02:59:55 +00:00
|
|
|
Gap_Buffer_Stream stream = {0};
|
2017-03-23 19:16:39 +00:00
|
|
|
i32 i = 0;
|
|
|
|
i32 size = buffer_size(buffer);
|
2016-09-24 15:26:36 +00:00
|
|
|
|
2017-03-23 19:16:39 +00:00
|
|
|
i32 line_index = 0;
|
|
|
|
i32 character_index = 0;
|
|
|
|
|
|
|
|
b32 skipping_whitespace = 0;
|
2016-09-25 00:13:24 +00:00
|
|
|
|
2016-09-24 17:25:11 +00:00
|
|
|
character_starts[line_index++] = character_index;
|
|
|
|
|
2016-09-27 04:41:59 +00:00
|
|
|
if (virtual_white){
|
2017-03-23 19:16:39 +00:00
|
|
|
skipping_whitespace = 1;
|
2016-09-25 00:13:24 +00:00
|
|
|
}
|
|
|
|
|
2017-03-12 01:49:45 +00:00
|
|
|
Translation_State tran = {0};
|
|
|
|
Translation_Emits emits = {0};
|
2017-02-20 21:05:42 +00:00
|
|
|
|
2016-09-25 19:25:27 +00:00
|
|
|
stream.use_termination_character = 1;
|
|
|
|
stream.terminator = '\n';
|
2016-09-24 17:25:11 +00:00
|
|
|
if (buffer_stringify_loop(&stream, buffer, i, size)){
|
2017-03-23 19:16:39 +00:00
|
|
|
b32 still_looping = 0;
|
2016-09-24 17:25:11 +00:00
|
|
|
do{
|
|
|
|
for (; i < stream.end; ++i){
|
|
|
|
u8 ch = (u8)stream.data[i];
|
2017-02-20 21:05:42 +00:00
|
|
|
|
2017-03-12 02:23:54 +00:00
|
|
|
translating_fully_process_byte(system, font, &tran, ch, i, size, &emits);
|
2017-02-20 21:05:42 +00:00
|
|
|
|
2017-03-18 19:24:16 +00:00
|
|
|
for (TRANSLATION_DECL_EMIT_LOOP(J, emits)){
|
2017-03-12 01:20:24 +00:00
|
|
|
TRANSLATION_DECL_GET_STEP(step, behavior, J, emits);
|
2016-09-25 00:13:24 +00:00
|
|
|
|
2017-03-12 01:20:24 +00:00
|
|
|
if (behavior.do_newline){
|
2016-09-25 00:13:24 +00:00
|
|
|
++character_index;
|
2017-02-20 21:05:42 +00:00
|
|
|
character_starts[line_index++] = character_index;
|
|
|
|
if (virtual_white){
|
2017-03-23 19:16:39 +00:00
|
|
|
skipping_whitespace = 1;
|
2017-02-20 21:05:42 +00:00
|
|
|
}
|
|
|
|
}
|
2017-03-12 01:20:24 +00:00
|
|
|
else if (behavior.do_codepoint_advance || behavior.do_number_advance){
|
2017-02-20 21:05:42 +00:00
|
|
|
if (ch != ' ' && ch != '\t'){
|
2017-03-23 19:16:39 +00:00
|
|
|
skipping_whitespace = 0;
|
2017-02-20 21:05:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!skipping_whitespace){
|
|
|
|
++character_index;
|
|
|
|
}
|
2016-09-25 00:13:24 +00:00
|
|
|
}
|
2016-09-24 17:25:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
still_looping = buffer_stringify_next(&stream);
|
|
|
|
}while(still_looping);
|
|
|
|
}
|
|
|
|
|
2017-07-10 14:51:19 +00:00
|
|
|
Assert(line_index-1 == buffer->line_count);
|
2016-09-24 15:26:36 +00:00
|
|
|
}
|
|
|
|
|
2016-09-29 01:07:14 +00:00
|
|
|
enum{
|
|
|
|
BLStatus_Finished,
|
|
|
|
BLStatus_NeedWrapLineShift,
|
|
|
|
BLStatus_NeedLineShift,
|
|
|
|
BLStatus_NeedWrapDetermination,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Buffer_Layout_Stop{
|
2017-03-23 19:14:39 +00:00
|
|
|
u32 status;
|
2017-03-23 19:15:33 +00:00
|
|
|
i32 line_index;
|
|
|
|
i32 wrap_line_index;
|
2017-03-23 19:16:39 +00:00
|
|
|
i32 pos;
|
|
|
|
i32 next_line_pos;
|
2016-09-29 01:07:14 +00:00
|
|
|
f32 x;
|
|
|
|
};
|
|
|
|
|
2016-09-27 04:41:59 +00:00
|
|
|
struct Buffer_Measure_Wrap_Params{
|
2017-01-07 02:59:55 +00:00
|
|
|
Gap_Buffer *buffer;
|
2017-03-23 19:15:33 +00:00
|
|
|
i32 *wrap_line_index;
|
2017-03-12 02:23:54 +00:00
|
|
|
System_Functions *system;
|
2017-03-03 23:57:11 +00:00
|
|
|
Render_Font *font;
|
2016-09-27 04:41:59 +00:00
|
|
|
b32 virtual_white;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Buffer_Measure_Wrap_State{
|
2017-01-07 02:59:55 +00:00
|
|
|
Gap_Buffer_Stream stream;
|
2017-03-23 19:16:39 +00:00
|
|
|
i32 i;
|
|
|
|
i32 size;
|
2016-09-29 01:07:14 +00:00
|
|
|
b32 still_looping;
|
|
|
|
|
2017-03-23 19:15:33 +00:00
|
|
|
i32 line_index;
|
2016-09-22 21:25:52 +00:00
|
|
|
|
2017-03-23 19:15:33 +00:00
|
|
|
i32 current_wrap_index;
|
2016-09-27 04:41:59 +00:00
|
|
|
f32 current_adv;
|
|
|
|
f32 x;
|
2016-09-22 21:25:52 +00:00
|
|
|
|
2016-09-27 04:41:59 +00:00
|
|
|
b32 skipping_whitespace;
|
2017-03-23 19:15:33 +00:00
|
|
|
i32 wrap_unit_end;
|
2016-09-29 01:07:14 +00:00
|
|
|
b32 did_wrap;
|
|
|
|
b32 first_of_the_line;
|
2016-09-24 15:26:36 +00:00
|
|
|
|
2017-03-12 01:49:45 +00:00
|
|
|
Translation_State tran;
|
|
|
|
Translation_Emits emits;
|
2017-03-12 01:20:24 +00:00
|
|
|
u32 J;
|
|
|
|
Buffer_Model_Step step;
|
|
|
|
Buffer_Model_Behavior behavior;
|
2017-02-20 21:05:42 +00:00
|
|
|
|
2016-09-27 04:41:59 +00:00
|
|
|
i32 __pc__;
|
|
|
|
};
|
|
|
|
|
|
|
|
// duff-routine defines
|
|
|
|
#define DrCase(PC) case PC: goto resumespot_##PC
|
|
|
|
#define DrYield(PC, n) { *S_ptr = S; S_ptr->__pc__ = PC; return(n); resumespot_##PC:; }
|
|
|
|
#define DrReturn(n) { *S_ptr = S; S_ptr->__pc__ = -1; return(n); }
|
|
|
|
|
2017-01-07 02:59:55 +00:00
|
|
|
internal Buffer_Layout_Stop
|
2017-03-23 19:15:33 +00:00
|
|
|
buffer_measure_wrap_y(Buffer_Measure_Wrap_State *S_ptr, Buffer_Measure_Wrap_Params params, f32 line_shift, b32 do_wrap, i32 wrap_unit_end){
|
2016-09-27 04:41:59 +00:00
|
|
|
Buffer_Measure_Wrap_State S = *S_ptr;
|
2016-09-29 01:07:14 +00:00
|
|
|
Buffer_Layout_Stop S_stop;
|
2016-09-27 04:41:59 +00:00
|
|
|
|
|
|
|
switch (S.__pc__){
|
|
|
|
DrCase(1);
|
|
|
|
DrCase(2);
|
|
|
|
DrCase(3);
|
2016-09-29 01:07:14 +00:00
|
|
|
DrCase(4);
|
2016-09-27 04:41:59 +00:00
|
|
|
}
|
|
|
|
|
2017-03-23 19:15:33 +00:00
|
|
|
S.size = buffer_size(params.buffer);
|
2016-09-29 01:07:14 +00:00
|
|
|
|
2016-09-27 04:41:59 +00:00
|
|
|
if (params.virtual_white){
|
|
|
|
S_stop.status = BLStatus_NeedLineShift;
|
2016-09-27 18:51:58 +00:00
|
|
|
S_stop.line_index = S.line_index;
|
2016-09-27 19:33:44 +00:00
|
|
|
S_stop.wrap_line_index = S.current_wrap_index;
|
2016-09-27 20:28:59 +00:00
|
|
|
S_stop.pos = S.i;
|
2016-09-27 04:41:59 +00:00
|
|
|
DrYield(1, S_stop);
|
|
|
|
}
|
|
|
|
|
|
|
|
S.x = line_shift;
|
2016-09-27 18:51:58 +00:00
|
|
|
params.wrap_line_index[S.line_index++] = 0;
|
2016-09-27 04:41:59 +00:00
|
|
|
|
|
|
|
if (params.virtual_white){
|
2017-02-20 21:05:42 +00:00
|
|
|
S.skipping_whitespace = true;
|
2016-09-27 04:41:59 +00:00
|
|
|
}
|
|
|
|
|
2016-09-29 01:07:14 +00:00
|
|
|
S.first_of_the_line = 1;
|
2016-09-27 04:41:59 +00:00
|
|
|
if (buffer_stringify_loop(&S.stream, params.buffer, S.i, S.size)){
|
|
|
|
S.still_looping = 0;
|
2016-09-23 01:57:28 +00:00
|
|
|
do{
|
2016-09-27 04:41:59 +00:00
|
|
|
for (; S.i < S.stream.end; ++S.i){
|
2017-03-12 01:20:24 +00:00
|
|
|
{
|
|
|
|
u8 ch = (u8)S.stream.data[S.i];
|
|
|
|
|
|
|
|
if (ch != ' ' && ch != '\t'){
|
|
|
|
S.skipping_whitespace = false;
|
|
|
|
}
|
|
|
|
|
2017-03-12 02:23:54 +00:00
|
|
|
translating_fully_process_byte(params.system, params.font, &S.tran, ch, S.i, S.size, &S.emits);
|
2016-09-22 21:25:52 +00:00
|
|
|
}
|
2017-02-20 21:05:42 +00:00
|
|
|
|
2017-03-18 19:24:16 +00:00
|
|
|
for (TRANSLATION_EMIT_LOOP(S.J, S.emits)){
|
2017-03-12 01:20:24 +00:00
|
|
|
TRANSLATION_GET_STEP(S.step, S.behavior, S.J, S.emits);
|
2016-09-27 04:41:59 +00:00
|
|
|
|
2017-03-12 01:20:24 +00:00
|
|
|
if (S.behavior.do_newline){
|
2017-02-20 21:05:42 +00:00
|
|
|
++S.current_wrap_index;
|
|
|
|
params.wrap_line_index[S.line_index++] = S.current_wrap_index;
|
2016-09-29 01:07:14 +00:00
|
|
|
|
2017-02-20 21:05:42 +00:00
|
|
|
if (params.virtual_white){
|
|
|
|
S_stop.status = BLStatus_NeedLineShift;
|
2016-09-29 01:07:14 +00:00
|
|
|
S_stop.line_index = S.line_index - 1;
|
|
|
|
S_stop.wrap_line_index = S.current_wrap_index;
|
2017-02-20 21:05:42 +00:00
|
|
|
S_stop.pos = S.i+1;
|
|
|
|
DrYield(2, S_stop);
|
|
|
|
}
|
|
|
|
|
|
|
|
S.x = line_shift;
|
|
|
|
|
|
|
|
if (params.virtual_white){
|
|
|
|
S.skipping_whitespace = 1;
|
|
|
|
}
|
|
|
|
S.first_of_the_line = 1;
|
|
|
|
}
|
2017-03-12 01:20:24 +00:00
|
|
|
else if (S.behavior.do_number_advance || S.behavior.do_codepoint_advance){
|
2017-02-20 21:05:42 +00:00
|
|
|
if (!S.skipping_whitespace){
|
2017-03-12 01:20:24 +00:00
|
|
|
if (S.behavior.do_codepoint_advance){
|
2017-03-13 23:48:11 +00:00
|
|
|
S.current_adv = font_get_glyph_advance(params.system, params.font, S.step.value);
|
2017-02-20 21:05:42 +00:00
|
|
|
}
|
|
|
|
else{
|
2017-03-13 23:48:11 +00:00
|
|
|
S.current_adv = font_get_byte_advance(params.font);
|
2017-02-20 21:05:42 +00:00
|
|
|
}
|
2016-09-27 04:41:59 +00:00
|
|
|
|
2017-02-20 21:05:42 +00:00
|
|
|
S.did_wrap = false;
|
2017-03-24 23:41:10 +00:00
|
|
|
if (S.step.i >= S.wrap_unit_end){
|
2017-02-20 21:05:42 +00:00
|
|
|
S_stop.status = BLStatus_NeedWrapDetermination;
|
|
|
|
S_stop.line_index = S.line_index - 1;
|
|
|
|
S_stop.wrap_line_index = S.current_wrap_index;
|
2017-03-24 23:41:10 +00:00
|
|
|
S_stop.pos = S.step.i;
|
2017-02-20 21:05:42 +00:00
|
|
|
S_stop.x = S.x;
|
|
|
|
DrYield(4, S_stop);
|
2016-09-29 01:07:14 +00:00
|
|
|
|
2017-02-20 21:05:42 +00:00
|
|
|
S.wrap_unit_end = wrap_unit_end;
|
2016-09-29 01:07:14 +00:00
|
|
|
|
2017-02-20 21:05:42 +00:00
|
|
|
if (do_wrap && !S.first_of_the_line){
|
|
|
|
S.did_wrap = true;
|
|
|
|
++S.current_wrap_index;
|
|
|
|
|
|
|
|
if (params.virtual_white){
|
|
|
|
S_stop.status = BLStatus_NeedWrapLineShift;
|
|
|
|
S_stop.line_index = S.line_index - 1;
|
|
|
|
S_stop.wrap_line_index = S.current_wrap_index;
|
2017-03-24 23:41:10 +00:00
|
|
|
S_stop.pos = S.step.i;
|
2017-02-20 21:05:42 +00:00
|
|
|
DrYield(3, S_stop);
|
|
|
|
}
|
|
|
|
|
|
|
|
S.x = line_shift + S.current_adv;
|
|
|
|
}
|
2016-09-29 01:07:14 +00:00
|
|
|
}
|
2017-02-20 21:05:42 +00:00
|
|
|
|
|
|
|
if (!S.did_wrap){
|
|
|
|
S.x += S.current_adv;
|
|
|
|
}
|
|
|
|
|
|
|
|
S.first_of_the_line = 0;
|
2016-09-27 04:41:59 +00:00
|
|
|
}
|
2016-09-23 01:57:28 +00:00
|
|
|
}
|
2016-09-22 21:25:52 +00:00
|
|
|
}
|
|
|
|
}
|
2016-09-27 04:41:59 +00:00
|
|
|
S.still_looping = buffer_stringify_next(&S.stream);
|
|
|
|
}while(S.still_looping);
|
2016-09-22 21:25:52 +00:00
|
|
|
}
|
|
|
|
|
2016-09-27 18:51:58 +00:00
|
|
|
++S.current_wrap_index;
|
|
|
|
params.wrap_line_index[S.line_index++] = S.current_wrap_index;
|
2016-09-22 21:25:52 +00:00
|
|
|
|
2017-07-10 14:51:19 +00:00
|
|
|
Assert(S.line_index-1 == params.buffer->line_count);
|
2016-09-27 04:41:59 +00:00
|
|
|
|
|
|
|
S_stop.status = BLStatus_Finished;
|
|
|
|
DrReturn(S_stop);
|
2016-09-22 21:25:52 +00:00
|
|
|
}
|
|
|
|
|
2016-09-27 04:41:59 +00:00
|
|
|
#undef DrCase
|
|
|
|
#undef DrYield
|
|
|
|
#undef DrReturn
|
|
|
|
|
2017-01-07 02:59:55 +00:00
|
|
|
internal void
|
2017-03-23 19:16:39 +00:00
|
|
|
buffer_remeasure_starts(Gap_Buffer *buffer, i32 line_start, i32 line_end, i32 line_shift, i32 text_shift){
|
|
|
|
i32 *starts = buffer->line_starts;
|
|
|
|
i32 line_count = buffer->line_count;
|
2016-09-21 22:34:19 +00:00
|
|
|
|
2017-07-10 14:51:19 +00:00
|
|
|
Assert(0 <= line_start);
|
|
|
|
Assert(line_start <= line_end);
|
|
|
|
Assert(line_end < line_count);
|
|
|
|
Assert(line_count + line_shift <= buffer->line_max);
|
2016-09-21 22:34:19 +00:00
|
|
|
|
2017-03-23 19:16:39 +00:00
|
|
|
++line_end;
|
2016-09-22 21:25:52 +00:00
|
|
|
|
|
|
|
// Adjust
|
2016-09-21 22:34:19 +00:00
|
|
|
if (text_shift != 0){
|
2017-03-23 19:16:39 +00:00
|
|
|
i32 line_i = line_end;
|
2016-09-21 22:34:19 +00:00
|
|
|
starts += line_i;
|
|
|
|
for (; line_i < line_count; ++line_i, ++starts){
|
|
|
|
*starts += text_shift;
|
|
|
|
}
|
|
|
|
starts = buffer->line_starts;
|
|
|
|
}
|
|
|
|
|
2016-09-22 21:25:52 +00:00
|
|
|
// Shift
|
2017-03-23 19:16:39 +00:00
|
|
|
i32 new_line_count = line_count;
|
|
|
|
i32 new_line_end = line_end;
|
2016-09-21 22:34:19 +00:00
|
|
|
if (line_shift != 0){
|
2016-09-22 21:25:52 +00:00
|
|
|
new_line_count += line_shift;
|
2017-03-23 19:16:39 +00:00
|
|
|
new_line_end += line_shift;
|
2016-09-24 15:26:36 +00:00
|
|
|
|
2017-07-03 17:19:13 +00:00
|
|
|
memmove(starts + line_end + line_shift, starts + line_end, sizeof(i32)*(line_count - line_end));
|
2016-09-21 22:34:19 +00:00
|
|
|
}
|
|
|
|
|
2016-09-22 21:25:52 +00:00
|
|
|
// Iteration data (yikes! Need better loop system)
|
2017-01-07 02:59:55 +00:00
|
|
|
Gap_Buffer_Stream stream = {0};
|
2017-03-23 19:16:39 +00:00
|
|
|
i32 size = buffer_size(buffer);
|
|
|
|
i32 char_i = starts[line_start];
|
|
|
|
i32 line_i = line_start;
|
2016-09-22 21:25:52 +00:00
|
|
|
|
|
|
|
// Line start measurement
|
2017-03-23 19:16:39 +00:00
|
|
|
i32 start = char_i;
|
2016-09-21 22:34:19 +00:00
|
|
|
|
2016-09-23 01:57:28 +00:00
|
|
|
if (buffer_stringify_loop(&stream, buffer, char_i, size)){
|
|
|
|
b32 still_looping = 0;
|
|
|
|
do{
|
|
|
|
for (; char_i < stream.end; ++char_i){
|
|
|
|
u8 ch = (u8)stream.data[char_i];
|
2016-09-22 21:25:52 +00:00
|
|
|
|
2016-09-23 01:57:28 +00:00
|
|
|
if (ch == '\n'){
|
|
|
|
starts[line_i] = start;
|
|
|
|
++line_i;
|
|
|
|
start = char_i + 1;
|
|
|
|
|
2017-03-23 19:16:39 +00:00
|
|
|
// TODO(allen): I would like to know that I am not guessing here,
|
|
|
|
// so let's try to turn the && into an Assert.
|
|
|
|
if (line_i >= new_line_end && (line_i >= new_line_count || start == starts[line_i])){
|
2016-09-23 01:57:28 +00:00
|
|
|
goto buffer_remeasure_starts_end;
|
|
|
|
}
|
2016-09-22 21:25:52 +00:00
|
|
|
}
|
2016-09-21 22:34:19 +00:00
|
|
|
}
|
2016-09-23 01:57:28 +00:00
|
|
|
still_looping = buffer_stringify_next(&stream);
|
|
|
|
}while(still_looping);
|
2016-09-21 22:34:19 +00:00
|
|
|
}
|
|
|
|
|
2016-09-22 21:25:52 +00:00
|
|
|
// TODO(allen): I suspect this can just go away.
|
2016-09-21 22:34:19 +00:00
|
|
|
if (char_i == size){
|
|
|
|
starts[line_i++] = start;
|
|
|
|
}
|
|
|
|
|
2016-09-22 21:25:52 +00:00
|
|
|
buffer_remeasure_starts_end:;
|
2017-07-10 14:51:19 +00:00
|
|
|
Assert(line_count >= 1);
|
2016-09-22 21:25:52 +00:00
|
|
|
buffer->line_count = new_line_count;
|
2016-09-21 22:34:19 +00:00
|
|
|
}
|
|
|
|
|
2017-01-07 02:59:55 +00:00
|
|
|
internal void
|
2017-03-23 19:16:39 +00:00
|
|
|
buffer_remeasure_character_starts(System_Functions *system, Render_Font *font, Gap_Buffer *buffer, i32 line_start, i32 line_end, i32 line_shift, i32 *character_starts, i32 mode, i32 virtual_whitespace){
|
2017-07-10 14:51:19 +00:00
|
|
|
Assert(mode == 0);
|
2016-09-25 19:25:27 +00:00
|
|
|
|
2017-03-23 19:16:39 +00:00
|
|
|
i32 new_line_count = buffer->line_count;
|
2016-09-25 19:25:27 +00:00
|
|
|
|
2017-07-10 14:51:19 +00:00
|
|
|
Assert(0 <= line_start);
|
|
|
|
Assert(line_start <= line_end);
|
|
|
|
Assert(line_end < new_line_count - line_shift);
|
2016-09-25 19:25:27 +00:00
|
|
|
|
2017-03-23 19:16:39 +00:00
|
|
|
++line_end;
|
2016-09-25 19:25:27 +00:00
|
|
|
|
|
|
|
// Shift
|
2017-03-23 19:16:39 +00:00
|
|
|
i32 line_count = new_line_count;
|
|
|
|
i32 new_line_end = line_end;
|
2016-09-25 19:25:27 +00:00
|
|
|
if (line_shift != 0){
|
|
|
|
line_count -= line_shift;
|
2017-03-23 19:16:39 +00:00
|
|
|
new_line_end += line_shift;
|
2017-03-23 19:14:39 +00:00
|
|
|
|
2017-03-23 19:16:39 +00:00
|
|
|
memmove(character_starts + line_end + line_shift, character_starts + line_end, sizeof(i32)*(line_count - line_end + 1));
|
2016-09-25 19:25:27 +00:00
|
|
|
}
|
|
|
|
|
2017-02-20 21:05:42 +00:00
|
|
|
// Iteration data
|
2017-01-07 02:59:55 +00:00
|
|
|
Gap_Buffer_Stream stream = {0};
|
2017-03-23 19:16:39 +00:00
|
|
|
i32 size = buffer_size(buffer);
|
|
|
|
i32 char_i = buffer->line_starts[line_start];
|
|
|
|
i32 line_i = line_start;
|
2016-09-25 19:25:27 +00:00
|
|
|
|
|
|
|
// Character measurement
|
2017-03-23 19:16:39 +00:00
|
|
|
i32 last_char_start = character_starts[line_i];
|
|
|
|
i32 current_char_start = last_char_start;
|
|
|
|
|
|
|
|
b32 skipping_whitespace = 0;
|
2016-09-25 19:25:27 +00:00
|
|
|
|
|
|
|
if (virtual_whitespace){
|
2017-03-23 19:16:39 +00:00
|
|
|
skipping_whitespace = 1;
|
2016-09-25 19:25:27 +00:00
|
|
|
}
|
|
|
|
|
2017-02-20 21:05:42 +00:00
|
|
|
// Translation
|
2017-03-12 01:49:45 +00:00
|
|
|
Translation_State tran = {0};
|
|
|
|
Translation_Emits emits = {0};
|
2017-02-20 21:05:42 +00:00
|
|
|
|
2017-03-23 19:14:39 +00:00
|
|
|
stream.use_termination_character = 1;
|
2016-09-25 19:25:27 +00:00
|
|
|
stream.terminator = '\n';
|
|
|
|
if (buffer_stringify_loop(&stream, buffer, char_i, size)){
|
|
|
|
b32 still_looping = 0;
|
|
|
|
do{
|
|
|
|
for (; char_i < stream.end; ++char_i){
|
|
|
|
u8 ch = (u8)stream.data[char_i];
|
2017-03-12 02:23:54 +00:00
|
|
|
translating_fully_process_byte(system, font, &tran, ch, char_i, size, &emits);
|
2017-02-20 21:05:42 +00:00
|
|
|
|
2017-03-18 19:24:16 +00:00
|
|
|
for (TRANSLATION_DECL_EMIT_LOOP(J, emits)){
|
2017-03-12 01:20:24 +00:00
|
|
|
TRANSLATION_DECL_GET_STEP(step, behavior, J, emits);
|
2016-09-25 19:25:27 +00:00
|
|
|
|
2017-03-12 01:20:24 +00:00
|
|
|
if (behavior.do_newline){
|
2017-02-20 21:05:42 +00:00
|
|
|
character_starts[line_i++] = last_char_start;
|
2016-09-25 19:25:27 +00:00
|
|
|
++current_char_start;
|
2017-02-20 21:05:42 +00:00
|
|
|
last_char_start = current_char_start;
|
|
|
|
if (virtual_whitespace){
|
|
|
|
skipping_whitespace = 1;
|
|
|
|
}
|
|
|
|
|
2017-03-23 19:16:39 +00:00
|
|
|
if (line_i >= new_line_end){
|
2017-02-20 21:05:42 +00:00
|
|
|
goto buffer_remeasure_character_starts_end;
|
|
|
|
}
|
|
|
|
}
|
2017-03-12 01:20:24 +00:00
|
|
|
else if (behavior.do_codepoint_advance || behavior.do_number_advance){
|
2017-02-20 21:05:42 +00:00
|
|
|
if (ch != ' ' && ch != '\t'){
|
|
|
|
skipping_whitespace = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!skipping_whitespace){
|
|
|
|
++current_char_start;
|
|
|
|
}
|
2016-09-25 19:25:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
still_looping = buffer_stringify_next(&stream);
|
|
|
|
}while(still_looping);
|
|
|
|
}
|
2017-03-23 19:16:39 +00:00
|
|
|
|
2017-07-10 14:51:19 +00:00
|
|
|
Assert(line_i >= new_line_end);
|
2017-03-23 19:16:39 +00:00
|
|
|
|
2016-09-25 19:25:27 +00:00
|
|
|
buffer_remeasure_character_starts_end:;
|
|
|
|
|
|
|
|
// Adjust
|
2017-03-23 19:16:39 +00:00
|
|
|
if (line_i <= new_line_end){
|
|
|
|
i32 character_shift = current_char_start - character_starts[line_i];
|
2016-09-25 19:25:27 +00:00
|
|
|
|
|
|
|
if (character_shift != 0){
|
|
|
|
character_starts += line_i;
|
|
|
|
for (; line_i <= new_line_count; ++line_i, ++character_starts){
|
|
|
|
*character_starts += character_shift;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-07 02:59:55 +00:00
|
|
|
internal void
|
2017-03-23 19:16:39 +00:00
|
|
|
buffer_remeasure_wrap_y(Gap_Buffer *buffer, i32 line_start, i32 line_end, i32 line_shift,
|
|
|
|
f32 *wraps, f32 font_height, f32 *adv, f32 max_width){
|
|
|
|
i32 new_line_count = buffer->line_count;
|
2016-09-22 21:25:52 +00:00
|
|
|
|
2017-07-10 14:51:19 +00:00
|
|
|
Assert(0 <= line_start);
|
|
|
|
Assert(line_start <= line_end);
|
|
|
|
Assert(line_end < new_line_count - line_shift);
|
2016-09-22 21:25:52 +00:00
|
|
|
|
2017-03-23 19:16:39 +00:00
|
|
|
++line_end;
|
2016-09-22 21:25:52 +00:00
|
|
|
|
|
|
|
// Shift
|
2017-03-23 19:16:39 +00:00
|
|
|
i32 line_count = new_line_count;
|
|
|
|
i32 new_line_end = line_end;
|
2016-09-22 21:25:52 +00:00
|
|
|
if (line_shift != 0){
|
|
|
|
line_count -= line_shift;
|
2017-03-23 19:16:39 +00:00
|
|
|
new_line_end += line_shift;
|
2016-09-24 15:26:36 +00:00
|
|
|
|
2017-03-23 19:16:39 +00:00
|
|
|
memmove(wraps + line_end + line_shift, wraps + line_end, sizeof(i32)*(line_count - line_end + 1));
|
2016-09-22 21:25:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Iteration data (yikes! Need better loop system)
|
2017-01-07 02:59:55 +00:00
|
|
|
Gap_Buffer_Stream stream = {0};
|
2017-03-23 19:16:39 +00:00
|
|
|
i32 size = buffer_size(buffer);
|
|
|
|
i32 char_i = buffer->line_starts[line_start];
|
|
|
|
i32 line_i = line_start;
|
2016-09-21 22:34:19 +00:00
|
|
|
|
2016-09-22 21:25:52 +00:00
|
|
|
// Line wrap measurement
|
|
|
|
f32 last_wrap = wraps[line_i];
|
|
|
|
f32 current_wrap = last_wrap;
|
2016-09-21 22:34:19 +00:00
|
|
|
f32 x = 0.f;
|
|
|
|
|
2016-09-23 01:57:28 +00:00
|
|
|
if (buffer_stringify_loop(&stream, buffer, char_i, size)){
|
2017-03-23 19:16:39 +00:00
|
|
|
b32 still_looping = 0;
|
2016-09-23 01:57:28 +00:00
|
|
|
do{
|
|
|
|
for (; char_i < stream.end; ++char_i){
|
|
|
|
u8 ch = (u8)stream.data[char_i];
|
2016-09-22 21:25:52 +00:00
|
|
|
|
2016-09-23 01:57:28 +00:00
|
|
|
if (ch == '\n'){
|
|
|
|
wraps[line_i] = last_wrap;
|
|
|
|
++line_i;
|
2016-09-21 22:34:19 +00:00
|
|
|
current_wrap += font_height;
|
2016-09-23 01:57:28 +00:00
|
|
|
last_wrap = current_wrap;
|
|
|
|
x = 0.f;
|
|
|
|
|
|
|
|
// TODO(allen): I would like to know that I am not guessing here.
|
2017-03-23 19:16:39 +00:00
|
|
|
if (line_i >= new_line_end){
|
2016-09-23 01:57:28 +00:00
|
|
|
goto buffer_remeasure_wraps_end;
|
|
|
|
}
|
2016-09-21 22:34:19 +00:00
|
|
|
}
|
|
|
|
else{
|
2016-09-23 01:57:28 +00:00
|
|
|
f32 current_adv = adv[ch];
|
|
|
|
if (x + current_adv > max_width){
|
|
|
|
current_wrap += font_height;
|
|
|
|
x = current_adv;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
x += current_adv;
|
|
|
|
}
|
2016-09-21 22:34:19 +00:00
|
|
|
}
|
|
|
|
}
|
2016-09-23 01:57:28 +00:00
|
|
|
still_looping = buffer_stringify_next(&stream);
|
|
|
|
}while(still_looping);
|
2016-09-21 22:34:19 +00:00
|
|
|
}
|
|
|
|
|
2016-09-22 21:25:52 +00:00
|
|
|
wraps[line_i++] = last_wrap;
|
2016-09-21 22:34:19 +00:00
|
|
|
|
2016-09-22 21:25:52 +00:00
|
|
|
buffer_remeasure_wraps_end:;
|
|
|
|
|
|
|
|
// Adjust
|
2017-03-23 19:16:39 +00:00
|
|
|
if (line_i <= new_line_end){
|
2016-09-25 19:25:27 +00:00
|
|
|
f32 y_shift = current_wrap - wraps[line_i];
|
|
|
|
|
|
|
|
if (y_shift != 0){
|
|
|
|
wraps += line_i;
|
|
|
|
for (; line_i <= new_line_count; ++line_i, ++wraps){
|
|
|
|
*wraps += y_shift;
|
|
|
|
}
|
2016-09-22 21:25:52 +00:00
|
|
|
}
|
|
|
|
}
|
2016-09-21 22:34:19 +00:00
|
|
|
}
|
|
|
|
|
2017-03-23 19:16:39 +00:00
|
|
|
internal i32
|
|
|
|
binary_search(i32 *array, i32 value, i32 l_bound, i32 u_bound){
|
|
|
|
i32 start = l_bound, end = u_bound;
|
|
|
|
i32 i = 0;
|
|
|
|
|
|
|
|
if (value < 0){
|
|
|
|
value = 0;
|
|
|
|
}
|
|
|
|
|
2016-09-21 22:34:19 +00:00
|
|
|
for (;;){
|
|
|
|
i = (start + end) >> 1;
|
2016-09-29 18:29:00 +00:00
|
|
|
if (array[i] < value){
|
2016-09-21 22:34:19 +00:00
|
|
|
start = i;
|
|
|
|
}
|
2016-09-29 18:29:00 +00:00
|
|
|
else if (array[i] > value){
|
2016-09-21 22:34:19 +00:00
|
|
|
end = i;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
break;
|
|
|
|
}
|
2017-07-10 14:51:19 +00:00
|
|
|
Assert(start < end);
|
2016-09-21 22:34:19 +00:00
|
|
|
if (start == end - 1){
|
2016-09-27 19:33:44 +00:00
|
|
|
i = start;
|
2016-09-21 22:34:19 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2017-03-23 19:16:39 +00:00
|
|
|
|
2016-09-27 19:33:44 +00:00
|
|
|
return(i);
|
2016-09-21 22:34:19 +00:00
|
|
|
}
|
|
|
|
|
2017-03-23 19:16:39 +00:00
|
|
|
inline i32
|
|
|
|
buffer_get_line_index_range(Gap_Buffer *buffer, i32 pos, i32 l_bound, i32 u_bound){
|
2017-07-10 14:51:19 +00:00
|
|
|
Assert(0 <= l_bound);
|
|
|
|
Assert(l_bound <= u_bound);
|
|
|
|
Assert(u_bound <= buffer->line_count);
|
2016-09-29 18:29:00 +00:00
|
|
|
|
2017-07-10 14:51:19 +00:00
|
|
|
Assert(buffer->line_starts != 0);
|
2016-09-29 18:29:00 +00:00
|
|
|
|
2017-03-23 19:16:39 +00:00
|
|
|
i32 i = binary_search(buffer->line_starts, pos, l_bound, u_bound);
|
2016-09-29 18:29:00 +00:00
|
|
|
return(i);
|
|
|
|
}
|
|
|
|
|
2017-03-23 19:16:39 +00:00
|
|
|
inline i32
|
|
|
|
buffer_get_line_index(Gap_Buffer *buffer, i32 pos){
|
|
|
|
i32 result = buffer_get_line_index_range(buffer, pos, 0, buffer->line_count);
|
2016-09-21 22:34:19 +00:00
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2017-03-23 19:16:39 +00:00
|
|
|
inline i32
|
|
|
|
buffer_get_line_index_from_character_pos(i32 *character_starts, i32 pos, i32 l_bound, i32 u_bound){
|
|
|
|
i32 i = binary_search(character_starts, pos, l_bound, u_bound);
|
2016-09-27 18:51:58 +00:00
|
|
|
return(i);
|
2016-09-25 00:13:24 +00:00
|
|
|
}
|
|
|
|
|
2017-03-23 19:16:39 +00:00
|
|
|
inline i32
|
|
|
|
buffer_get_line_index_from_wrapped_y(i32 *wrap_line_index, f32 y, i32 line_height, i32 l_bound, i32 u_bound){
|
|
|
|
i32 wrap_index = floor32(y/line_height);
|
|
|
|
i32 i = binary_search(wrap_line_index, wrap_index, l_bound, u_bound);
|
2016-09-25 00:13:24 +00:00
|
|
|
return(i);
|
2016-09-21 22:34:19 +00:00
|
|
|
}
|
|
|
|
|
2017-01-07 02:59:55 +00:00
|
|
|
internal Partial_Cursor
|
2017-03-23 19:16:39 +00:00
|
|
|
buffer_partial_from_pos(Gap_Buffer *buffer, i32 pos){
|
2016-09-23 04:56:47 +00:00
|
|
|
Partial_Cursor result = {0};
|
|
|
|
|
2017-03-23 19:16:39 +00:00
|
|
|
int32_t size = buffer_size(buffer);
|
|
|
|
if (pos > size){
|
|
|
|
pos = size;
|
|
|
|
}
|
|
|
|
if (pos < 0){
|
|
|
|
pos = 0;
|
|
|
|
}
|
2016-09-23 04:56:47 +00:00
|
|
|
|
2017-03-23 19:16:39 +00:00
|
|
|
i32 line_index = buffer_get_line_index_range(buffer, pos, 0, buffer->line_count);
|
2016-09-23 04:56:47 +00:00
|
|
|
result.pos = pos;
|
|
|
|
result.line = line_index+1;
|
|
|
|
result.character = pos - buffer->line_starts[line_index] + 1;
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2017-01-07 02:59:55 +00:00
|
|
|
internal Partial_Cursor
|
2017-03-23 19:15:33 +00:00
|
|
|
buffer_partial_from_line_character(Gap_Buffer *buffer, i32 line, i32 character){
|
2016-09-23 04:56:47 +00:00
|
|
|
Partial_Cursor result = {0};
|
|
|
|
|
2017-03-23 19:15:33 +00:00
|
|
|
i32 line_index = line - 1;
|
2016-09-29 19:39:47 +00:00
|
|
|
if (line_index >= buffer->line_count){
|
|
|
|
line_index = buffer->line_count - 1;
|
|
|
|
}
|
|
|
|
if (line_index < 0){
|
|
|
|
line_index = 0;
|
|
|
|
}
|
2016-09-23 04:56:47 +00:00
|
|
|
|
2017-03-23 19:15:33 +00:00
|
|
|
i32 size = buffer_size(buffer);
|
2017-01-29 00:03:23 +00:00
|
|
|
|
2017-03-23 19:15:33 +00:00
|
|
|
i32 this_start = buffer->line_starts[line_index];
|
|
|
|
i32 max_character = (size-this_start) + 1;
|
2016-09-23 04:56:47 +00:00
|
|
|
if (line_index+1 < buffer->line_count){
|
2017-03-23 19:15:33 +00:00
|
|
|
i32 next_start = buffer->line_starts[line_index+1];
|
2016-09-23 04:56:47 +00:00
|
|
|
max_character = (next_start-this_start);
|
|
|
|
}
|
|
|
|
|
2017-03-23 19:15:33 +00:00
|
|
|
i32 adjusted_pos = 0;
|
2017-01-29 00:03:23 +00:00
|
|
|
if (character > 0){
|
2017-03-23 19:15:33 +00:00
|
|
|
if (character > max_character){
|
|
|
|
adjusted_pos = max_character - 1;
|
2017-01-29 00:03:23 +00:00
|
|
|
}
|
|
|
|
else{
|
2017-03-23 19:15:33 +00:00
|
|
|
adjusted_pos = character - 1;
|
2017-01-29 00:03:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (character == 0){
|
|
|
|
adjusted_pos = 0;
|
2016-09-24 00:18:27 +00:00
|
|
|
}
|
2017-03-23 19:15:33 +00:00
|
|
|
else{
|
|
|
|
if (-character > max_character){
|
|
|
|
adjusted_pos = 0;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
adjusted_pos = max_character + character;
|
|
|
|
}
|
|
|
|
}
|
2016-09-23 04:56:47 +00:00
|
|
|
|
2017-01-29 00:03:23 +00:00
|
|
|
result.pos = this_start + adjusted_pos;
|
2016-09-29 19:39:47 +00:00
|
|
|
result.line = line_index + 1;
|
2016-09-23 04:56:47 +00:00
|
|
|
result.character = character;
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Buffer_Cursor_Seek_Params{
|
2017-01-07 02:59:55 +00:00
|
|
|
Gap_Buffer *buffer;
|
2016-09-23 04:56:47 +00:00
|
|
|
Buffer_Seek seek;
|
2017-03-12 02:23:54 +00:00
|
|
|
System_Functions *system;
|
2017-03-03 23:57:11 +00:00
|
|
|
Render_Font *font;
|
2017-03-23 19:15:33 +00:00
|
|
|
i32 *wrap_line_index;
|
|
|
|
i32 *character_starts;
|
2016-09-23 23:25:06 +00:00
|
|
|
b32 virtual_white;
|
2016-09-29 01:07:14 +00:00
|
|
|
b32 return_hint;
|
|
|
|
Full_Cursor *cursor_out;
|
2016-09-23 04:56:47 +00:00
|
|
|
};
|
|
|
|
|
2016-09-23 23:25:06 +00:00
|
|
|
struct Buffer_Cursor_Seek_State{
|
2016-09-29 01:07:14 +00:00
|
|
|
Full_Cursor next_cursor;
|
|
|
|
Full_Cursor this_cursor;
|
2016-09-23 23:25:06 +00:00
|
|
|
Full_Cursor prev_cursor;
|
2016-09-29 01:07:14 +00:00
|
|
|
|
2017-01-07 02:59:55 +00:00
|
|
|
Gap_Buffer_Stream stream;
|
2016-09-23 23:25:06 +00:00
|
|
|
b32 still_looping;
|
2017-03-23 19:15:33 +00:00
|
|
|
i32 i;
|
|
|
|
i32 size;
|
|
|
|
i32 wrap_unit_end;
|
2016-09-27 04:41:59 +00:00
|
|
|
|
2016-09-29 01:07:14 +00:00
|
|
|
b32 first_of_the_line;
|
|
|
|
b32 xy_seek;
|
2016-09-27 04:41:59 +00:00
|
|
|
f32 ch_width;
|
2017-03-12 01:20:24 +00:00
|
|
|
|
|
|
|
i32 font_height;
|
2016-09-21 22:34:19 +00:00
|
|
|
|
2017-03-12 01:49:45 +00:00
|
|
|
Translation_State tran;
|
|
|
|
Translation_Emits emits;
|
2017-03-12 01:20:24 +00:00
|
|
|
u32 J;
|
|
|
|
Buffer_Model_Step step;
|
|
|
|
Buffer_Model_Behavior behavior;
|
|
|
|
|
2017-02-20 21:05:42 +00:00
|
|
|
|
2016-09-23 23:25:06 +00:00
|
|
|
i32 __pc__;
|
|
|
|
};
|
|
|
|
|
2016-09-29 01:07:14 +00:00
|
|
|
// dialogical-routine defines
|
2016-09-23 23:25:06 +00:00
|
|
|
#define DrCase(PC) case PC: goto resumespot_##PC
|
|
|
|
#define DrYield(PC, n) { *S_ptr = S; S_ptr->__pc__ = PC; return(n); resumespot_##PC:; }
|
|
|
|
#define DrReturn(n) { *S_ptr = S; S_ptr->__pc__ = -1; return(n); }
|
|
|
|
|
2017-01-07 02:59:55 +00:00
|
|
|
internal Buffer_Layout_Stop
|
2017-03-23 19:15:33 +00:00
|
|
|
buffer_cursor_seek(Buffer_Cursor_Seek_State *S_ptr, Buffer_Cursor_Seek_Params params, f32 line_shift, b32 do_wrap, i32 wrap_unit_end){
|
2016-09-23 23:25:06 +00:00
|
|
|
Buffer_Cursor_Seek_State S = *S_ptr;
|
|
|
|
Buffer_Layout_Stop S_stop;
|
|
|
|
|
|
|
|
switch (S.__pc__){
|
|
|
|
DrCase(1);
|
2016-09-27 04:41:59 +00:00
|
|
|
DrCase(2);
|
|
|
|
DrCase(3);
|
2016-09-29 01:07:14 +00:00
|
|
|
DrCase(4);
|
2016-09-23 23:25:06 +00:00
|
|
|
}
|
|
|
|
|
2017-03-12 01:20:24 +00:00
|
|
|
S.font_height = font_get_height(params.font);
|
|
|
|
|
2016-09-23 23:25:06 +00:00
|
|
|
S.xy_seek = (params.seek.type == buffer_seek_wrapped_xy || params.seek.type == buffer_seek_unwrapped_xy);
|
2017-03-23 19:15:33 +00:00
|
|
|
S.size = buffer_size(params.buffer);
|
2016-09-23 20:02:58 +00:00
|
|
|
|
2016-09-23 23:25:06 +00:00
|
|
|
// Get cursor hint
|
2016-10-24 17:22:22 +00:00
|
|
|
{
|
2017-03-23 19:15:33 +00:00
|
|
|
i32 line_index = 0;
|
2016-10-24 17:22:22 +00:00
|
|
|
switch (params.seek.type){
|
|
|
|
case buffer_seek_pos:
|
|
|
|
{
|
2017-03-23 19:15:33 +00:00
|
|
|
params.seek.pos = clamp(0, params.seek.pos, S.size);
|
2016-10-24 17:22:22 +00:00
|
|
|
|
2017-03-23 19:15:33 +00:00
|
|
|
line_index = buffer_get_line_index(params.buffer, params.seek.pos);
|
2016-10-24 17:22:22 +00:00
|
|
|
}break;
|
2016-09-23 04:56:47 +00:00
|
|
|
|
2016-10-24 17:22:22 +00:00
|
|
|
case buffer_seek_character_pos:
|
|
|
|
{
|
2017-03-23 19:15:33 +00:00
|
|
|
i32 line_count = params.buffer->line_count;
|
|
|
|
i32 max_character = params.character_starts[line_count] - 1;
|
|
|
|
params.seek.pos = clamp(0, params.seek.pos, max_character);
|
2016-10-24 17:22:22 +00:00
|
|
|
|
2017-03-23 19:15:33 +00:00
|
|
|
line_index = buffer_get_line_index_from_character_pos(params.character_starts, params.seek.pos, 0, params.buffer->line_count);
|
2016-10-24 17:22:22 +00:00
|
|
|
}break;
|
|
|
|
|
|
|
|
case buffer_seek_line_char:
|
|
|
|
{
|
2017-03-23 19:15:33 +00:00
|
|
|
line_index = params.seek.line - 1;
|
2017-03-13 23:48:11 +00:00
|
|
|
line_index = clamp_bottom(0, line_index);
|
2016-10-24 17:22:22 +00:00
|
|
|
}break;
|
2016-09-25 00:13:24 +00:00
|
|
|
|
2016-10-24 17:22:22 +00:00
|
|
|
case buffer_seek_unwrapped_xy:
|
|
|
|
{
|
2017-03-23 19:15:33 +00:00
|
|
|
line_index = (i32)(params.seek.y / S.font_height);
|
2017-03-13 23:48:11 +00:00
|
|
|
line_index = clamp_bottom(0, line_index);
|
2016-10-24 17:22:22 +00:00
|
|
|
}break;
|
|
|
|
|
|
|
|
case buffer_seek_wrapped_xy:
|
|
|
|
{
|
2017-03-12 01:20:24 +00:00
|
|
|
line_index = buffer_get_line_index_from_wrapped_y(params.wrap_line_index, params.seek.y, S.font_height, 0, params.buffer->line_count);
|
2016-10-24 17:22:22 +00:00
|
|
|
}break;
|
|
|
|
|
|
|
|
default: InvalidCodePath;
|
|
|
|
}
|
2016-09-21 22:34:19 +00:00
|
|
|
|
2017-03-23 19:15:33 +00:00
|
|
|
i32 safe_line_index = line_index;
|
2017-03-13 23:48:11 +00:00
|
|
|
if (line_index >= params.buffer->line_count){
|
|
|
|
safe_line_index = params.buffer->line_count-1;
|
|
|
|
}
|
|
|
|
|
2016-10-24 17:22:22 +00:00
|
|
|
// Build the cursor hint
|
2017-03-13 23:48:11 +00:00
|
|
|
S.next_cursor.pos = params.buffer->line_starts[safe_line_index];
|
|
|
|
S.next_cursor.character_pos = params.character_starts[safe_line_index];
|
2017-03-24 23:41:10 +00:00
|
|
|
S.next_cursor.line = safe_line_index + 1;
|
2016-09-29 01:07:14 +00:00
|
|
|
S.next_cursor.character = 1;
|
2017-03-13 23:48:11 +00:00
|
|
|
S.next_cursor.wrap_line = params.wrap_line_index[safe_line_index] + 1;
|
|
|
|
S.next_cursor.unwrapped_y = (f32)(safe_line_index * S.font_height);
|
2016-09-29 01:07:14 +00:00
|
|
|
S.next_cursor.unwrapped_x = 0;
|
2017-03-13 23:48:11 +00:00
|
|
|
S.next_cursor.wrapped_y = (f32)(params.wrap_line_index[safe_line_index] * S.font_height);
|
2016-09-29 01:07:14 +00:00
|
|
|
S.next_cursor.wrapped_x = 0;
|
2016-09-25 00:13:24 +00:00
|
|
|
}
|
|
|
|
|
2016-09-23 23:25:06 +00:00
|
|
|
// Get the initial line shift.
|
|
|
|
// Adjust the non-screen based coordinates to point to the first
|
|
|
|
// non-virtual character of the line.
|
|
|
|
if (params.virtual_white){
|
2016-09-27 19:33:44 +00:00
|
|
|
S_stop.status = BLStatus_NeedLineShift;
|
2017-03-23 19:15:33 +00:00
|
|
|
S_stop.line_index = S.next_cursor.line-1;
|
|
|
|
S_stop.wrap_line_index = S.next_cursor.wrap_line-1;
|
2016-09-23 23:25:06 +00:00
|
|
|
DrYield(1, S_stop);
|
2016-09-23 01:57:28 +00:00
|
|
|
|
2016-09-29 01:07:14 +00:00
|
|
|
S.next_cursor.unwrapped_x += line_shift;
|
|
|
|
S.next_cursor.wrapped_x += line_shift;
|
2016-09-23 02:30:29 +00:00
|
|
|
|
2017-03-23 19:15:05 +00:00
|
|
|
S.stream.use_termination_character = 1;
|
2016-09-23 23:25:06 +00:00
|
|
|
S.stream.terminator = '\n';
|
2017-03-23 19:15:05 +00:00
|
|
|
if (buffer_stringify_loop(&S.stream, params.buffer, S.next_cursor.pos, S.size)){
|
2016-09-23 01:57:28 +00:00
|
|
|
do{
|
2016-09-29 01:07:14 +00:00
|
|
|
for (; S.next_cursor.pos < S.stream.end; ++S.next_cursor.pos){
|
2017-03-12 01:20:24 +00:00
|
|
|
u8 ch = (u8)S.stream.data[S.next_cursor.pos];
|
2016-09-23 02:50:02 +00:00
|
|
|
|
2017-03-12 01:20:24 +00:00
|
|
|
if (ch != ' ' && ch != '\t'){
|
2016-09-23 23:25:06 +00:00
|
|
|
goto double_break_vwhite;
|
|
|
|
}
|
|
|
|
else{
|
2016-09-29 01:07:14 +00:00
|
|
|
++S.next_cursor.character;
|
2016-09-23 23:25:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
S.still_looping = buffer_stringify_next(&S.stream);
|
|
|
|
}while(S.still_looping);
|
|
|
|
}
|
2016-09-24 00:18:27 +00:00
|
|
|
InvalidCodePath;
|
2016-09-23 23:25:06 +00:00
|
|
|
double_break_vwhite:;
|
|
|
|
}
|
|
|
|
|
2017-02-20 21:05:42 +00:00
|
|
|
// If the caller just wants the hint, return that now.
|
2016-09-29 01:07:14 +00:00
|
|
|
if (params.return_hint){
|
|
|
|
*params.cursor_out = S.next_cursor;
|
|
|
|
S_stop.status = BLStatus_Finished;
|
|
|
|
DrReturn(S_stop);
|
|
|
|
}
|
|
|
|
|
2016-09-23 23:25:06 +00:00
|
|
|
// If we are already passed the point we want to be at, then just take this.
|
2016-09-29 01:07:14 +00:00
|
|
|
S.this_cursor = S.next_cursor;
|
2016-09-23 23:25:06 +00:00
|
|
|
switch (params.seek.type){
|
|
|
|
case buffer_seek_pos:
|
|
|
|
{
|
2016-09-29 01:07:14 +00:00
|
|
|
if (S.next_cursor.pos >= params.seek.pos){
|
2016-09-23 23:25:06 +00:00
|
|
|
goto buffer_cursor_seek_end;
|
|
|
|
}
|
|
|
|
}break;
|
|
|
|
|
2016-09-24 06:17:06 +00:00
|
|
|
case buffer_seek_character_pos:
|
|
|
|
{
|
2016-09-29 01:07:14 +00:00
|
|
|
if (S.next_cursor.character_pos >= params.seek.pos){
|
2016-09-24 06:17:06 +00:00
|
|
|
goto buffer_cursor_seek_end;
|
|
|
|
}
|
|
|
|
}break;
|
|
|
|
|
2016-09-23 23:25:06 +00:00
|
|
|
case buffer_seek_line_char:
|
|
|
|
{
|
2016-09-29 01:07:14 +00:00
|
|
|
if ((S.next_cursor.line == params.seek.line &&
|
|
|
|
S.next_cursor.character >= params.seek.character) ||
|
|
|
|
S.next_cursor.line > params.seek.line){
|
2016-09-23 23:25:06 +00:00
|
|
|
goto buffer_cursor_seek_end;
|
|
|
|
}
|
|
|
|
}break;
|
|
|
|
|
|
|
|
case buffer_seek_unwrapped_xy:
|
|
|
|
{
|
2016-09-29 01:07:14 +00:00
|
|
|
if (S.next_cursor.unwrapped_y > params.seek.y){
|
2016-09-23 23:25:06 +00:00
|
|
|
goto buffer_cursor_seek_end;
|
|
|
|
}
|
|
|
|
}break;
|
|
|
|
|
|
|
|
case buffer_seek_wrapped_xy:
|
|
|
|
{
|
2016-09-29 01:07:14 +00:00
|
|
|
if (S.next_cursor.wrapped_y > params.seek.y){
|
2016-09-23 23:25:06 +00:00
|
|
|
goto buffer_cursor_seek_end;
|
|
|
|
}
|
|
|
|
}break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Main seek loop
|
2017-03-23 19:15:33 +00:00
|
|
|
S.i = S.next_cursor.pos;
|
2016-09-23 23:25:06 +00:00
|
|
|
|
2016-09-24 00:18:27 +00:00
|
|
|
S.stream = null_buffer_stream;
|
2016-09-23 23:25:06 +00:00
|
|
|
S.stream.use_termination_character = 1;
|
|
|
|
S.stream.terminator = 0;
|
2016-09-29 01:07:14 +00:00
|
|
|
|
|
|
|
S.first_of_the_line = 1;
|
2016-09-23 23:25:06 +00:00
|
|
|
if (buffer_stringify_loop(&S.stream, params.buffer, S.i, S.size)){
|
|
|
|
S.still_looping = 0;
|
|
|
|
do{
|
|
|
|
for (; S.i < S.stream.end; ++S.i){
|
2017-03-12 01:20:24 +00:00
|
|
|
{
|
|
|
|
u8 ch = (u8)S.stream.data[S.i];
|
2017-03-12 02:23:54 +00:00
|
|
|
translating_fully_process_byte(params.system, params.font, &S.tran, ch, S.i, S.size, &S.emits);
|
2017-03-12 01:20:24 +00:00
|
|
|
}
|
2016-09-23 23:25:06 +00:00
|
|
|
|
2017-03-18 19:24:16 +00:00
|
|
|
for (TRANSLATION_EMIT_LOOP(S.J, S.emits)){
|
2017-03-12 01:20:24 +00:00
|
|
|
TRANSLATION_GET_STEP(S.step, S.behavior, S.J, S.emits);
|
2017-02-20 21:05:42 +00:00
|
|
|
|
|
|
|
S.prev_cursor = S.this_cursor;
|
|
|
|
S.this_cursor = S.next_cursor;
|
|
|
|
|
2017-03-12 01:20:24 +00:00
|
|
|
if (S.behavior.do_newline){
|
2016-09-29 01:07:14 +00:00
|
|
|
++S.next_cursor.character_pos;
|
|
|
|
++S.next_cursor.line;
|
|
|
|
++S.next_cursor.wrap_line;
|
2017-03-12 01:20:24 +00:00
|
|
|
S.next_cursor.unwrapped_y += S.font_height;
|
|
|
|
S.next_cursor.wrapped_y += S.font_height;
|
2016-09-29 01:07:14 +00:00
|
|
|
S.next_cursor.character = 1;
|
|
|
|
S.next_cursor.unwrapped_x = 0;
|
2016-09-27 04:41:59 +00:00
|
|
|
|
|
|
|
if (params.virtual_white){
|
2016-09-27 19:33:44 +00:00
|
|
|
S_stop.status = BLStatus_NeedLineShift;
|
2017-03-23 19:15:33 +00:00
|
|
|
S_stop.line_index = S.next_cursor.line-1;
|
|
|
|
S_stop.wrap_line_index = S.next_cursor.wrap_line-1;
|
2016-09-27 04:41:59 +00:00
|
|
|
DrYield(2, S_stop);
|
|
|
|
}
|
|
|
|
|
2016-09-29 01:07:14 +00:00
|
|
|
S.next_cursor.wrapped_x = line_shift;
|
|
|
|
S.first_of_the_line = 1;
|
2017-02-20 21:05:42 +00:00
|
|
|
}
|
2017-03-12 01:20:24 +00:00
|
|
|
else if (S.behavior.do_number_advance || S.behavior.do_codepoint_advance){
|
2017-02-20 21:05:42 +00:00
|
|
|
|
2017-03-13 23:48:11 +00:00
|
|
|
if (S.behavior.do_codepoint_advance){
|
|
|
|
S.ch_width = font_get_glyph_advance(params.system, params.font, S.step.value);
|
2017-02-20 21:05:42 +00:00
|
|
|
}
|
|
|
|
else{
|
2017-03-13 23:48:11 +00:00
|
|
|
S.ch_width = font_get_byte_advance(params.font);
|
2017-02-20 21:05:42 +00:00
|
|
|
}
|
2016-09-23 02:50:02 +00:00
|
|
|
|
2017-03-12 01:20:24 +00:00
|
|
|
if (S.step.i >= S.wrap_unit_end){
|
2016-09-29 01:07:14 +00:00
|
|
|
S_stop.status = BLStatus_NeedWrapDetermination;
|
2017-03-23 19:15:33 +00:00
|
|
|
S_stop.line_index = S.next_cursor.line-1;
|
|
|
|
S_stop.wrap_line_index = S.next_cursor.wrap_line-1;
|
|
|
|
S_stop.pos = S.step.i;
|
2016-09-29 01:07:14 +00:00
|
|
|
S_stop.x = S.next_cursor.wrapped_x;
|
|
|
|
DrYield(4, S_stop);
|
2016-09-27 04:41:59 +00:00
|
|
|
|
2016-09-29 01:07:14 +00:00
|
|
|
S.wrap_unit_end = wrap_unit_end;
|
2016-09-27 04:41:59 +00:00
|
|
|
|
2016-09-29 01:07:14 +00:00
|
|
|
if (do_wrap && !S.first_of_the_line){
|
2017-03-12 01:20:24 +00:00
|
|
|
S.next_cursor.wrapped_y += S.font_height;
|
2016-09-29 01:07:14 +00:00
|
|
|
|
|
|
|
++S.next_cursor.wrap_line;
|
|
|
|
if (params.virtual_white){
|
|
|
|
S_stop.status = BLStatus_NeedWrapLineShift;
|
2017-03-23 19:15:33 +00:00
|
|
|
S_stop.line_index = S.next_cursor.line-1;
|
|
|
|
S_stop.wrap_line_index = S.next_cursor.wrap_line-1;
|
2016-09-29 01:07:14 +00:00
|
|
|
DrYield(3, S_stop);
|
|
|
|
}
|
|
|
|
|
|
|
|
S.next_cursor.wrapped_x = line_shift;
|
|
|
|
S.this_cursor = S.next_cursor;
|
|
|
|
}
|
2016-09-23 23:25:06 +00:00
|
|
|
}
|
|
|
|
|
2016-09-29 01:07:14 +00:00
|
|
|
++S.next_cursor.character_pos;
|
|
|
|
++S.next_cursor.character;
|
|
|
|
S.next_cursor.unwrapped_x += S.ch_width;
|
|
|
|
S.next_cursor.wrapped_x += S.ch_width;
|
|
|
|
|
|
|
|
S.first_of_the_line = 0;
|
2017-02-20 21:05:42 +00:00
|
|
|
}
|
2016-09-23 02:50:02 +00:00
|
|
|
|
2017-03-12 01:20:24 +00:00
|
|
|
S.next_cursor.pos += S.step.byte_length;
|
2016-09-23 23:25:06 +00:00
|
|
|
|
2017-02-20 21:05:42 +00:00
|
|
|
f32 x = 0, px = 0, y = 0, py = 0;
|
|
|
|
switch (params.seek.type){
|
|
|
|
case buffer_seek_pos:
|
|
|
|
if (S.this_cursor.pos >= params.seek.pos){
|
|
|
|
goto buffer_cursor_seek_end;
|
|
|
|
}break;
|
|
|
|
|
|
|
|
case buffer_seek_character_pos:
|
|
|
|
if (S.this_cursor.character_pos >= params.seek.pos){
|
|
|
|
goto buffer_cursor_seek_end;
|
|
|
|
}break;
|
|
|
|
|
|
|
|
case buffer_seek_wrapped_xy:
|
|
|
|
{
|
|
|
|
x = S.this_cursor.wrapped_x;
|
|
|
|
px = S.prev_cursor.wrapped_x;
|
|
|
|
y = S.this_cursor.wrapped_y;
|
|
|
|
py = S.prev_cursor.wrapped_y;
|
|
|
|
}break;
|
|
|
|
|
|
|
|
case buffer_seek_unwrapped_xy:
|
|
|
|
{
|
|
|
|
x = S.this_cursor.unwrapped_x;
|
|
|
|
px = S.prev_cursor.unwrapped_x;
|
|
|
|
y = S.this_cursor.unwrapped_y;
|
|
|
|
py = S.prev_cursor.wrapped_y;
|
|
|
|
}break;
|
|
|
|
|
|
|
|
case buffer_seek_line_char:
|
|
|
|
if (S.this_cursor.line == params.seek.line && S.this_cursor.character >= params.seek.character){
|
|
|
|
goto buffer_cursor_seek_end;
|
|
|
|
}
|
|
|
|
else if (S.this_cursor.line > params.seek.line){
|
|
|
|
S.this_cursor = S.prev_cursor;
|
|
|
|
goto buffer_cursor_seek_end;
|
|
|
|
}break;
|
2016-09-23 02:50:02 +00:00
|
|
|
}
|
|
|
|
|
2017-02-20 21:05:42 +00:00
|
|
|
if (S.xy_seek){
|
|
|
|
if (y > params.seek.y){
|
|
|
|
S.this_cursor = S.prev_cursor;
|
2016-09-23 04:56:47 +00:00
|
|
|
goto buffer_cursor_seek_end;
|
2016-09-23 02:50:02 +00:00
|
|
|
}
|
|
|
|
|
2017-03-12 01:20:24 +00:00
|
|
|
if (y > params.seek.y - S.font_height && x >= params.seek.x){
|
2017-02-20 21:05:42 +00:00
|
|
|
if (!params.seek.round_down){
|
2017-03-12 01:20:24 +00:00
|
|
|
if (py >= y && !S.behavior.do_newline && (params.seek.x - px) < (x - params.seek.x)){
|
2017-02-20 21:05:42 +00:00
|
|
|
S.this_cursor = S.prev_cursor;
|
|
|
|
}
|
|
|
|
goto buffer_cursor_seek_end;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (py >= y){
|
|
|
|
S.this_cursor = S.prev_cursor;
|
|
|
|
}
|
|
|
|
goto buffer_cursor_seek_end;
|
2016-10-06 01:38:08 +00:00
|
|
|
}
|
2017-02-20 21:05:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (S.next_cursor.pos > S.size){
|
2016-09-29 01:07:14 +00:00
|
|
|
goto buffer_cursor_seek_end;
|
2016-09-23 02:50:02 +00:00
|
|
|
}
|
2016-09-23 01:57:28 +00:00
|
|
|
}
|
2016-09-23 23:25:06 +00:00
|
|
|
}
|
|
|
|
S.still_looping = buffer_stringify_next(&S.stream);
|
|
|
|
}while(S.still_looping);
|
2016-09-21 22:34:19 +00:00
|
|
|
}
|
|
|
|
|
2016-09-23 23:25:06 +00:00
|
|
|
InvalidCodePath;
|
|
|
|
|
2016-09-23 01:57:28 +00:00
|
|
|
buffer_cursor_seek_end:;
|
2016-09-29 01:07:14 +00:00
|
|
|
*params.cursor_out = S.this_cursor;
|
2016-09-23 23:25:06 +00:00
|
|
|
S_stop.status = BLStatus_Finished;
|
|
|
|
DrReturn(S_stop);
|
2016-09-21 22:34:19 +00:00
|
|
|
}
|
|
|
|
|
2016-09-27 04:41:59 +00:00
|
|
|
#undef DrCase
|
2016-09-23 23:25:06 +00:00
|
|
|
#undef DrYield
|
|
|
|
#undef DrReturn
|
|
|
|
|
2017-01-07 02:59:55 +00:00
|
|
|
internal void
|
2017-03-23 19:15:33 +00:00
|
|
|
buffer_invert_edit_shift(Gap_Buffer *buffer, Buffer_Edit edit, Buffer_Edit *inverse, char *strings,
|
|
|
|
i32 *str_pos, i32 max, i32 shift_amount){
|
|
|
|
i32 pos = *str_pos;
|
|
|
|
i32 len = edit.end - edit.start;
|
2017-07-10 14:51:19 +00:00
|
|
|
Assert(pos >= 0);
|
|
|
|
Assert(pos + len <= max);
|
2016-09-21 22:34:19 +00:00
|
|
|
*str_pos = pos + len;
|
|
|
|
|
|
|
|
inverse->str_start = pos;
|
|
|
|
inverse->len = len;
|
|
|
|
inverse->start = edit.start + shift_amount;
|
|
|
|
inverse->end = edit.start + edit.len + shift_amount;
|
2017-03-23 19:15:05 +00:00
|
|
|
buffer_stringify(buffer, edit.start, edit.end, strings + pos);
|
2016-09-21 22:34:19 +00:00
|
|
|
}
|
|
|
|
|
2017-01-07 02:59:55 +00:00
|
|
|
inline void
|
2017-03-23 19:15:33 +00:00
|
|
|
buffer_invert_edit(Gap_Buffer *buffer, Buffer_Edit edit, Buffer_Edit *inverse, char *strings,
|
|
|
|
i32 *str_pos, i32 max){
|
2016-09-21 22:34:19 +00:00
|
|
|
buffer_invert_edit_shift(buffer, edit, inverse, strings, str_pos, max, 0);
|
|
|
|
}
|
|
|
|
|
2017-07-18 22:34:57 +00:00
|
|
|
struct Buffer_Invert_Batch{
|
2017-03-23 19:15:33 +00:00
|
|
|
i32 i;
|
2016-09-21 22:34:19 +00:00
|
|
|
i32 shift_amount;
|
2017-03-23 19:15:33 +00:00
|
|
|
i32 len;
|
2017-07-18 22:34:57 +00:00
|
|
|
};
|
2016-09-21 22:34:19 +00:00
|
|
|
|
2017-03-23 19:15:33 +00:00
|
|
|
internal i32
|
|
|
|
buffer_invert_batch(Buffer_Invert_Batch *state, Gap_Buffer *buffer, Buffer_Edit *edits, i32 count,
|
|
|
|
Buffer_Edit *inverse, char *strings, i32 *str_pos, i32 max){
|
2016-09-23 00:03:47 +00:00
|
|
|
i32 shift_amount = state->shift_amount;
|
2017-03-23 19:15:33 +00:00
|
|
|
i32 i = state->i;
|
2016-09-23 00:03:47 +00:00
|
|
|
Buffer_Edit *edit = edits + i;
|
|
|
|
Buffer_Edit *inv_edit = inverse + i;
|
2017-03-23 19:15:33 +00:00
|
|
|
i32 result = 0;
|
2016-09-21 22:34:19 +00:00
|
|
|
|
|
|
|
for (; i < count; ++i, ++edit, ++inv_edit){
|
|
|
|
if (*str_pos + edit->end - edit->start <= max){
|
|
|
|
buffer_invert_edit_shift(buffer, *edit, inv_edit, strings, str_pos, max, shift_amount);
|
2017-03-23 19:15:33 +00:00
|
|
|
shift_amount += (edit->len - (edit->end - edit->start));
|
2016-09-21 22:34:19 +00:00
|
|
|
}
|
|
|
|
else{
|
2017-03-23 19:15:33 +00:00
|
|
|
result = 1;
|
|
|
|
state->len = edit->end - edit->start;
|
2016-09-21 22:34:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
state->i = i;
|
|
|
|
state->shift_amount = shift_amount;
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
enum Buffer_Render_Flag{
|
2016-10-14 21:21:17 +00:00
|
|
|
BRFlag_Special_Character = (1 << 0),
|
2017-01-07 02:59:55 +00:00
|
|
|
BRFlag_Ghost_Character = (1 << 1)
|
2016-09-21 22:34:19 +00:00
|
|
|
};
|
|
|
|
|
2017-07-18 22:34:57 +00:00
|
|
|
struct Buffer_Render_Item{
|
2017-03-23 19:16:39 +00:00
|
|
|
i32 index;
|
2017-03-12 01:20:24 +00:00
|
|
|
u32 codepoint;
|
2017-02-20 21:05:42 +00:00
|
|
|
u32 flags;
|
2016-09-21 22:34:19 +00:00
|
|
|
f32 x0, y0;
|
|
|
|
f32 x1, y1;
|
2017-07-18 22:34:57 +00:00
|
|
|
};
|
2016-09-21 22:34:19 +00:00
|
|
|
|
2017-07-18 22:34:57 +00:00
|
|
|
struct Render_Item_Write{
|
2016-09-21 22:34:19 +00:00
|
|
|
Buffer_Render_Item *item;
|
|
|
|
f32 x, y;
|
2017-03-13 23:48:11 +00:00
|
|
|
System_Functions *system;
|
2017-03-03 23:57:11 +00:00
|
|
|
Render_Font *font;
|
2017-03-12 01:20:24 +00:00
|
|
|
i32 font_height;
|
2016-09-21 22:34:19 +00:00
|
|
|
f32 x_min;
|
|
|
|
f32 x_max;
|
2017-07-18 22:34:57 +00:00
|
|
|
};
|
2016-09-21 22:34:19 +00:00
|
|
|
|
2017-01-07 02:59:55 +00:00
|
|
|
inline Render_Item_Write
|
2017-03-23 19:16:39 +00:00
|
|
|
write_render_item(Render_Item_Write write, i32 index, u32 codepoint, u32 flags){
|
|
|
|
|
2017-03-13 23:48:11 +00:00
|
|
|
f32 ch_width = font_get_glyph_advance(write.system, write.font, codepoint);
|
2016-09-21 22:34:19 +00:00
|
|
|
|
|
|
|
if (write.x <= write.x_max && write.x + ch_width >= write.x_min){
|
|
|
|
write.item->index = index;
|
2017-03-12 01:20:24 +00:00
|
|
|
write.item->codepoint = codepoint;
|
2016-09-21 22:34:19 +00:00
|
|
|
write.item->flags = flags;
|
|
|
|
write.item->x0 = write.x;
|
|
|
|
write.item->y0 = write.y;
|
|
|
|
write.item->x1 = write.x + ch_width;
|
2017-03-12 01:20:24 +00:00
|
|
|
write.item->y1 = write.y + write.font_height;
|
2016-09-21 22:34:19 +00:00
|
|
|
|
|
|
|
++write.item;
|
|
|
|
}
|
|
|
|
|
|
|
|
write.x += ch_width;
|
|
|
|
|
|
|
|
return(write);
|
|
|
|
}
|
|
|
|
|
2016-09-23 00:03:47 +00:00
|
|
|
struct Buffer_Render_Params{
|
2017-01-07 02:59:55 +00:00
|
|
|
Gap_Buffer *buffer;
|
2016-09-23 00:03:47 +00:00
|
|
|
Buffer_Render_Item *items;
|
2017-03-23 19:15:33 +00:00
|
|
|
i32 max;
|
|
|
|
i32 *count;
|
2016-09-23 00:03:47 +00:00
|
|
|
f32 port_x;
|
|
|
|
f32 port_y;
|
|
|
|
f32 clip_w;
|
|
|
|
f32 scroll_x;
|
|
|
|
f32 scroll_y;
|
|
|
|
f32 width;
|
|
|
|
f32 height;
|
|
|
|
Full_Cursor start_cursor;
|
|
|
|
i32 wrapped;
|
2017-03-12 02:23:54 +00:00
|
|
|
System_Functions *system;
|
2017-03-03 23:57:11 +00:00
|
|
|
Render_Font *font;
|
2016-09-23 00:03:47 +00:00
|
|
|
b32 virtual_white;
|
2016-10-14 21:21:17 +00:00
|
|
|
i32 wrap_slashes;
|
|
|
|
};
|
|
|
|
|
2016-09-23 00:03:47 +00:00
|
|
|
struct Buffer_Render_State{
|
2017-01-07 02:59:55 +00:00
|
|
|
Gap_Buffer_Stream stream;
|
2016-09-23 01:57:28 +00:00
|
|
|
b32 still_looping;
|
2017-03-23 19:15:33 +00:00
|
|
|
i32 i;
|
|
|
|
i32 size;
|
2017-02-20 21:05:42 +00:00
|
|
|
|
|
|
|
f32 shift_x;
|
|
|
|
f32 shift_y;
|
2016-09-21 22:34:19 +00:00
|
|
|
|
2016-09-23 00:03:47 +00:00
|
|
|
f32 ch_width;
|
2016-09-21 22:34:19 +00:00
|
|
|
|
2016-09-23 00:03:47 +00:00
|
|
|
Render_Item_Write write;
|
2017-03-12 01:20:24 +00:00
|
|
|
f32 byte_advance;
|
2016-09-21 22:34:19 +00:00
|
|
|
|
2017-03-23 19:15:33 +00:00
|
|
|
i32 line;
|
|
|
|
i32 wrap_line;
|
2016-09-23 00:03:47 +00:00
|
|
|
b32 skipping_whitespace;
|
2016-09-29 01:07:14 +00:00
|
|
|
b32 first_of_the_line;
|
2017-03-23 19:15:33 +00:00
|
|
|
i32 wrap_unit_end;
|
2016-09-23 00:03:47 +00:00
|
|
|
|
2017-03-12 01:49:45 +00:00
|
|
|
Translation_State tran;
|
|
|
|
Translation_Emits emits;
|
2017-03-12 01:20:24 +00:00
|
|
|
u32 J;
|
|
|
|
Buffer_Model_Step step;
|
|
|
|
Buffer_Model_Behavior behavior;
|
2017-02-20 21:05:42 +00:00
|
|
|
|
2016-09-23 00:03:47 +00:00
|
|
|
i32 __pc__;
|
|
|
|
};
|
|
|
|
|
|
|
|
// duff-routine defines
|
|
|
|
#define DrCase(PC) case PC: goto resumespot_##PC
|
|
|
|
#define DrYield(PC, n) { *S_ptr = S; S_ptr->__pc__ = PC; return(n); resumespot_##PC:; }
|
|
|
|
#define DrReturn(n) { *S_ptr = S; S_ptr->__pc__ = -1; return(n); }
|
|
|
|
|
2017-01-07 02:59:55 +00:00
|
|
|
internal Buffer_Layout_Stop
|
2016-10-14 21:21:17 +00:00
|
|
|
buffer_render_data(Buffer_Render_State *S_ptr, Buffer_Render_Params params, f32 line_shift, b32 do_wrap, i32 wrap_unit_end){
|
2016-09-23 00:03:47 +00:00
|
|
|
Buffer_Render_State S = *S_ptr;
|
2016-09-23 23:25:06 +00:00
|
|
|
Buffer_Layout_Stop S_stop;
|
2016-09-23 00:03:47 +00:00
|
|
|
|
|
|
|
Buffer_Render_Item *item_end = params.items + params.max;
|
2016-09-21 22:34:19 +00:00
|
|
|
|
2016-09-23 00:03:47 +00:00
|
|
|
switch (S.__pc__){
|
|
|
|
DrCase(1);
|
|
|
|
DrCase(2);
|
|
|
|
DrCase(3);
|
2016-09-29 01:07:14 +00:00
|
|
|
DrCase(4);
|
2016-09-23 00:03:47 +00:00
|
|
|
}
|
2016-09-21 22:34:19 +00:00
|
|
|
|
2017-02-20 21:05:42 +00:00
|
|
|
S.size = buffer_size(params.buffer);
|
|
|
|
S.shift_x = params.port_x - params.scroll_x;
|
|
|
|
S.shift_y = params.port_y - params.scroll_y;
|
|
|
|
|
|
|
|
if (params.wrapped){
|
|
|
|
S.shift_y += params.start_cursor.wrapped_y;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
S.shift_y += params.start_cursor.unwrapped_y;
|
|
|
|
}
|
|
|
|
|
2017-03-23 19:15:05 +00:00
|
|
|
S.line = params.start_cursor.line - 1;
|
|
|
|
S.wrap_line = params.start_cursor.wrap_line - 1;
|
2016-09-23 00:03:47 +00:00
|
|
|
|
|
|
|
if (params.virtual_white){
|
2016-09-27 19:33:44 +00:00
|
|
|
S_stop.status = BLStatus_NeedLineShift;
|
2017-03-23 19:15:33 +00:00
|
|
|
S_stop.line_index = S.line;
|
|
|
|
S_stop.wrap_line_index = S.wrap_line;
|
2016-09-23 00:03:47 +00:00
|
|
|
DrYield(1, S_stop);
|
|
|
|
}
|
|
|
|
|
|
|
|
S.write.item = params.items;
|
2017-02-20 21:05:42 +00:00
|
|
|
S.write.x = S.shift_x + line_shift;
|
|
|
|
S.write.y = S.shift_y;
|
2017-03-13 23:48:11 +00:00
|
|
|
S.write.system = params.system;
|
2017-03-03 23:57:11 +00:00
|
|
|
S.write.font = params.font;
|
2017-03-12 01:20:24 +00:00
|
|
|
S.write.font_height = font_get_height(params.font);
|
2016-09-23 00:03:47 +00:00
|
|
|
S.write.x_min = params.port_x;
|
|
|
|
S.write.x_max = params.port_x + params.clip_w;
|
|
|
|
|
2017-03-12 01:20:24 +00:00
|
|
|
S.byte_advance = font_get_byte_advance(params.font);
|
|
|
|
|
2016-09-23 23:36:35 +00:00
|
|
|
if (params.virtual_white){
|
|
|
|
S.skipping_whitespace = 1;
|
|
|
|
}
|
|
|
|
|
2016-09-29 01:07:14 +00:00
|
|
|
S.first_of_the_line = 1;
|
2017-03-23 19:15:05 +00:00
|
|
|
S.i = params.start_cursor.pos;
|
2017-02-20 21:05:42 +00:00
|
|
|
if (buffer_stringify_loop(&S.stream, params.buffer, S.i, S.size)){
|
2016-09-23 23:36:35 +00:00
|
|
|
do{
|
|
|
|
for (; S.i < S.stream.end; ++S.i){
|
2017-03-12 01:20:24 +00:00
|
|
|
{
|
|
|
|
u8 ch = (u8)S.stream.data[S.i];
|
2017-03-12 02:23:54 +00:00
|
|
|
translating_fully_process_byte(params.system, params.font, &S.tran, ch, S.i, S.size, &S.emits);
|
2017-03-12 01:20:24 +00:00
|
|
|
}
|
2016-09-23 23:36:35 +00:00
|
|
|
|
2017-03-18 19:24:16 +00:00
|
|
|
for (TRANSLATION_EMIT_LOOP(S.J, S.emits)){
|
2017-03-12 01:20:24 +00:00
|
|
|
TRANSLATION_GET_STEP(S.step, S.behavior, S.J, S.emits);
|
2017-02-20 21:05:42 +00:00
|
|
|
|
2017-03-12 01:20:24 +00:00
|
|
|
if (!S.behavior.do_newline && S.step.i >= S.wrap_unit_end){
|
2017-02-20 21:05:42 +00:00
|
|
|
S_stop.status = BLStatus_NeedWrapDetermination;
|
2017-03-23 19:15:33 +00:00
|
|
|
S_stop.line_index = S.line;
|
|
|
|
S_stop.wrap_line_index = S.wrap_line;
|
|
|
|
S_stop.pos = S.step.i;
|
2017-02-20 21:05:42 +00:00
|
|
|
S_stop.x = S.write.x - S.shift_x;
|
|
|
|
DrYield(4, S_stop);
|
|
|
|
|
|
|
|
S.wrap_unit_end = wrap_unit_end;
|
|
|
|
|
|
|
|
if (do_wrap && !S.first_of_the_line){
|
|
|
|
if (params.virtual_white){
|
|
|
|
S_stop.status = BLStatus_NeedWrapLineShift;
|
2017-03-23 19:15:33 +00:00
|
|
|
S_stop.line_index = S.line;
|
|
|
|
S_stop.wrap_line_index = S.wrap_line + 1;
|
2017-02-20 21:05:42 +00:00
|
|
|
DrYield(2, S_stop);
|
|
|
|
}
|
|
|
|
|
|
|
|
++S.wrap_line;
|
|
|
|
|
|
|
|
if (params.wrapped){
|
|
|
|
switch (params.wrap_slashes){
|
|
|
|
case WrapIndicator_Show_After_Line:
|
|
|
|
{
|
2017-03-12 01:20:24 +00:00
|
|
|
S.write = write_render_item(S.write, S.step.i-1, '\\', BRFlag_Ghost_Character);
|
2017-02-20 21:05:42 +00:00
|
|
|
}break;
|
|
|
|
|
|
|
|
case WrapIndicator_Show_At_Wrap_Edge:
|
|
|
|
{
|
|
|
|
if (S.write.x < S.shift_x + params.width){
|
|
|
|
S.write.x = S.shift_x + params.width;
|
|
|
|
}
|
2017-03-12 01:20:24 +00:00
|
|
|
S.write = write_render_item(S.write, S.step.i-1, '\\', BRFlag_Ghost_Character);
|
2017-02-20 21:05:42 +00:00
|
|
|
}break;
|
|
|
|
}
|
|
|
|
|
|
|
|
S.write.x = S.shift_x + line_shift;
|
2017-03-12 01:20:24 +00:00
|
|
|
S.write.y += S.write.font_height;
|
2017-02-20 21:05:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-09-23 01:57:28 +00:00
|
|
|
|
2017-02-20 21:05:42 +00:00
|
|
|
if (S.write.y > params.height + params.port_y || S.write.item >= item_end){
|
|
|
|
goto buffer_get_render_data_end;
|
|
|
|
}
|
2016-09-27 19:33:44 +00:00
|
|
|
|
2017-02-20 21:05:42 +00:00
|
|
|
S.first_of_the_line = false;
|
2017-03-12 01:20:24 +00:00
|
|
|
if (S.behavior.do_newline){
|
|
|
|
S.write = write_render_item(S.write, S.step.i, ' ', 0);
|
2017-02-20 21:05:42 +00:00
|
|
|
|
2016-09-29 01:07:14 +00:00
|
|
|
if (params.virtual_white){
|
2017-02-20 21:05:42 +00:00
|
|
|
S_stop.status = BLStatus_NeedLineShift;
|
2017-03-23 19:15:33 +00:00
|
|
|
S_stop.line_index = S.line+1;
|
|
|
|
S_stop.wrap_line_index = S.wrap_line+1;
|
2017-02-20 21:05:42 +00:00
|
|
|
DrYield(3, S_stop);
|
|
|
|
|
|
|
|
S.skipping_whitespace = 1;
|
2016-09-29 01:07:14 +00:00
|
|
|
}
|
|
|
|
|
2017-02-20 21:05:42 +00:00
|
|
|
++S.line;
|
2016-09-29 01:07:14 +00:00
|
|
|
++S.wrap_line;
|
|
|
|
|
2017-02-20 21:05:42 +00:00
|
|
|
S.write.x = S.shift_x + line_shift;
|
2017-03-12 01:20:24 +00:00
|
|
|
S.write.y += S.write.font_height;
|
2017-02-20 21:05:42 +00:00
|
|
|
|
|
|
|
S.first_of_the_line = true;
|
|
|
|
}
|
2017-03-12 01:20:24 +00:00
|
|
|
else if (S.behavior.do_codepoint_advance){
|
|
|
|
u32 n = S.step.value;
|
2017-02-20 21:05:42 +00:00
|
|
|
if (n != ' ' && n != '\t'){
|
|
|
|
S.skipping_whitespace = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!S.skipping_whitespace){
|
2017-03-23 19:16:39 +00:00
|
|
|
u32 I = S.step.i;
|
2017-02-20 21:05:42 +00:00
|
|
|
switch (n){
|
|
|
|
case '\r':
|
2016-10-14 21:21:17 +00:00
|
|
|
{
|
2017-02-20 21:05:42 +00:00
|
|
|
S.write = write_render_item(S.write, I, '\\', BRFlag_Special_Character);
|
|
|
|
if (S.write.item < item_end){
|
|
|
|
S.write = write_render_item(S.write, I, 'r', BRFlag_Special_Character);
|
|
|
|
}
|
2016-10-14 21:21:17 +00:00
|
|
|
}break;
|
|
|
|
|
2017-02-20 21:05:42 +00:00
|
|
|
case '\t':
|
2016-10-14 21:21:17 +00:00
|
|
|
{
|
2017-03-13 23:48:11 +00:00
|
|
|
S.ch_width = font_get_glyph_advance(params.system, params.font, '\t');
|
2017-03-10 20:44:42 +00:00
|
|
|
|
2017-02-20 21:05:42 +00:00
|
|
|
f32 new_x = S.write.x + S.ch_width;
|
|
|
|
S.write = write_render_item(S.write, I, ' ', 0);
|
|
|
|
S.write.x = new_x;
|
2016-10-14 21:21:17 +00:00
|
|
|
}break;
|
2016-09-23 00:03:47 +00:00
|
|
|
|
2017-02-20 21:05:42 +00:00
|
|
|
default:
|
|
|
|
{
|
|
|
|
S.write = write_render_item(S.write, I, n, 0);
|
|
|
|
}break;
|
2016-09-21 22:34:19 +00:00
|
|
|
}
|
2016-09-23 23:36:35 +00:00
|
|
|
}
|
2017-02-20 21:05:42 +00:00
|
|
|
}
|
2017-03-12 01:20:24 +00:00
|
|
|
else if (S.behavior.do_number_advance){
|
|
|
|
u8 n = (u8)S.step.value;
|
2017-03-23 19:16:39 +00:00
|
|
|
u32 I = S.step.i;
|
2017-02-20 21:05:42 +00:00
|
|
|
S.skipping_whitespace = false;
|
2016-09-23 23:36:35 +00:00
|
|
|
|
2017-03-12 01:20:24 +00:00
|
|
|
S.ch_width = S.byte_advance;
|
2017-02-20 21:05:42 +00:00
|
|
|
f32 new_x = S.write.x + S.ch_width;
|
2016-09-23 23:36:35 +00:00
|
|
|
|
2017-02-20 21:05:42 +00:00
|
|
|
u8 cs[3];
|
|
|
|
cs[0] = '\\';
|
|
|
|
byte_to_ascii(n, cs+1);
|
2016-09-23 23:36:35 +00:00
|
|
|
|
|
|
|
if (S.write.item < item_end){
|
2017-02-20 21:05:42 +00:00
|
|
|
S.write = write_render_item(S.write, I, cs[0], BRFlag_Special_Character);
|
|
|
|
if (S.write.item < item_end){
|
|
|
|
S.write = write_render_item(S.write, I, cs[1], BRFlag_Special_Character);
|
2016-09-23 23:36:35 +00:00
|
|
|
if (S.write.item < item_end){
|
2017-02-20 21:05:42 +00:00
|
|
|
S.write = write_render_item(S.write, I, cs[2], BRFlag_Special_Character);
|
2016-09-23 00:03:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-02-20 21:05:42 +00:00
|
|
|
Assert(S.write.x <= new_x);
|
|
|
|
S.write.x = new_x;
|
|
|
|
}
|
|
|
|
|
2017-03-12 01:20:24 +00:00
|
|
|
if (!S.skipping_whitespace && !S.behavior.do_newline){
|
2017-02-20 21:05:42 +00:00
|
|
|
S.first_of_the_line = false;
|
2016-09-21 22:34:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-09-23 23:36:35 +00:00
|
|
|
S.still_looping = buffer_stringify_next(&S.stream);
|
|
|
|
}while(S.still_looping);
|
2016-09-21 22:34:19 +00:00
|
|
|
}
|
2016-09-23 23:36:35 +00:00
|
|
|
|
|
|
|
buffer_get_render_data_end:;
|
2017-02-20 21:05:42 +00:00
|
|
|
if (S.write.y <= params.height + S.shift_y || S.write.item == params.items){
|
2016-09-23 00:03:47 +00:00
|
|
|
if (S.write.item < item_end){
|
2017-02-20 21:05:42 +00:00
|
|
|
S.write = write_render_item(S.write, S.size, ' ', 0);
|
2016-09-21 22:34:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-23 00:03:47 +00:00
|
|
|
*params.count = (i32)(S.write.item - params.items);
|
2017-07-10 14:51:19 +00:00
|
|
|
Assert(*params.count <= params.max);
|
2016-09-23 00:03:47 +00:00
|
|
|
|
2016-09-23 23:25:06 +00:00
|
|
|
S_stop.status = BLStatus_Finished;
|
2016-09-23 00:03:47 +00:00
|
|
|
DrReturn(S_stop);
|
2016-09-21 22:34:19 +00:00
|
|
|
}
|
|
|
|
|
2016-09-23 00:03:47 +00:00
|
|
|
#undef DrYield
|
|
|
|
#undef DrReturn
|
|
|
|
#undef DrCase
|
|
|
|
|
2016-09-21 22:34:19 +00:00
|
|
|
// BOTTOM
|
|
|
|
|