forked from aburch/simutrans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
clipboard_internal.cc
78 lines (67 loc) · 1.97 KB
/
clipboard_internal.cc
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
/**
* Copyright (c) 2010 Knightly
*
* Clipboard functions for copy and paste of text
*
* This file is part of the Simutrans project under the artistic license.
* (see license.txt)
*/
#include <string.h>
#include "simsys.h"
#include "display/simgraph.h"
#include "simdebug.h"
#define MAX_SIZE (4096)
static char content[MAX_SIZE] = "";
static size_t content_length = 0;
/**
* Copy text to the clipboard
* @param source : pointer to the start of the source text
* @param length : number of character bytes to copy
* @author Knightly
*/
void dr_copy(const char *source, size_t length)
{
assert( length<MAX_SIZE );
content_length = length;
char *content_ptr = content;
while( (length--)>0 ) {
*content_ptr++ = *source++;
}
}
/**
* Paste text from the clipboard
* @param target : pointer to the insertion position in the target text
* @param max_length : maximum number of character bytes which could be inserted
* @return number of character bytes actually inserted -> for cursor advancing
* @author Knightly
*/
size_t dr_paste(char *target, size_t max_length)
{
// determine the number of bytes to be pasted
if( content_length<=max_length ) {
max_length = content_length;
}
else {
// ensure that max_length aligns with logical character boundaries of clipboard content
size_t tmp_length = 0;
size_t byte_count;
while( tmp_length+(byte_count=get_next_char(content+tmp_length,0u))<=max_length ) {
tmp_length += byte_count;
}
max_length = tmp_length;
}
const size_t inserted_length = max_length;
// move the text to free up space for inserting the clipboard content
char *target_old_end = target + strlen(target);
char *target_new_end = target_old_end + max_length;
while( target_old_end>=target ) {
*target_new_end-- = *target_old_end--;
}
// insert the clipboard content
const char *content_ptr = content;
while( (max_length--)>0 ) {
*target++ = *content_ptr++;
}
// return the inserted length for cursor advancing
return inserted_length;
}