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
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
|
/* This file is part of HINT
* Copyright 2017-2021 Martin Ruckert, Hochschule Muenchen, Lothstrasse 64, 80336 Muenchen
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT
* OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*
* Except as contained in this notice, the name of the copyright holders shall
* not be used in advertising or otherwise to promote the sale, use or other
* dealings in this Software without prior written authorization from the
* copyright holders.
*/
#include <stdio.h>
#include <stdlib.h>
#include <setjmp.h>
#include <string.h>
#include <stdarg.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <math.h>
#include <GL/glew.h>
#include <GLFW/glfw3.h>
#define VERSION 1
#define REVISION 3
#define PATCHLEVEL 1
#include "error.h"
#include "basetypes.h"
#include "format.h"
#include "get.h"
#include "hint.h"
#include "hrender.h"
#include "rendernative.h"
/* Error Handling */
int hint_error(const char *title, const char *message)
{ fprintf(stderr,"ERROR %s: %s\n",title,message);
return 0;
}
int hmessage(char *title, char *format, ...)
{ va_list vargs;
va_start(vargs,format);
vfprintf(stderr, format, vargs);
return 0;
}
void error_callback(int error, const char* description)
{ hint_error("OpenGL",description);
longjmp(hint_error_exit,1);
}
GLFWwindow* window;
#define SCALE_MIN 0.2
#define SCALE_NORMAL 1.0
#define SCALE_MAX 5.0
double scale=SCALE_NORMAL;
uint64_t pos; /* position of current page */
/* Getting the dpi for a window is not as simple as one might think,
because windows might dynamically move between monitors.
To get a list of monitors use:
int monitor_count;
GLFWmonitor** monitors = glfwGetMonitors(&monitor_count);
To get notified about connecting or disconnecting of monitors use:
glfwSetMonitorCallback(monitor_callback)
the callback should refresh the pointer and count returned
from glfwGetMonitors.
for a monitor, we can get:
- its physical size:
int width_mm, height_mm;
glfwGetMonitorPhysicalSize(monitor, &width_mm, &height_mm);
- its position (upper left) in screen coordinates:
int xpos, ypos;
glfwGetMonitorPos(monitor, &xpos, &ypos);
- its video mode:
GLFWvidmode* mode = glfwGetVideoMode(monitor);
and through the video mode the mode->width and mode->height
in screen coordinates.
Using this information, we can
- get the area of a monitor by its position width and height
in screen coordinates and
- convert screen coordinates
for the monitor into physical coordinates.
To determine the monitor where a window is currently displayed
screen coordinates must be used.
we get the window size in screen coordinates using:
int width, height;
glfwGetWindowSize(window, &width, &height);
we get the window position (upper left) in screen coordinates using:
int xpos, ypos;
glfwGetWindowPos(window, &xpos, &ypos);
Matching the window position against the monitor area we can find
the monitor on which we have the window position.
Using the information about the monitor, we can convert the
size of the window from screen coordinates to physical sizes.
To obtain the resolution of a window we use the size of the
windows framebuffer, which is in pixels either with
int width, height;
glfwGetFramebufferSize(window, &width, &height);
or by getting a notification using:
glfwSetFramebufferSizeCallback(window, framebuffer_size_callback);
void framebuffer_size_callback(GLFWwindow* window, int width, int height)
{
glViewport(0, 0, width, height);
}
*/
/* Monitors */
static int monitor_count;
static GLFWmonitor** monitors;
static void monitor_callback(GLFWmonitor* monitor, int event)
{ monitors=glfwGetMonitors(&monitor_count);
if (monitors==NULL || monitor_count==0)
error_callback(0,"Unable to find a monitor");
LOG("monitors %d\n",monitor_count);
}
static void init_monitors(void)
{ monitor_callback(NULL,0);
glfwSetMonitorCallback(monitor_callback);
}
static int m_width, m_height;
int width_mm, height_mm;
static int find_monitor(int x, int y)
/* return monitor for screen coordinates (x, y) */
{ int i;
for (i=0; i< monitor_count; i++)
{ int mx, my;
glfwGetMonitorPos(monitors[i], &mx, &my);
if (x>= mx && y >= my )
{ const GLFWvidmode *mode = glfwGetVideoMode(monitors[i]);
if (x <= mx+mode->width && y<=my+mode->height)
{ m_width=mode->width; m_height=mode->height;
glfwGetMonitorPhysicalSize(monitors[i], &width_mm, &height_mm);
LOG("Monitor pos: %d x %d, size: %d x %d, %dmm x %dmm\n",mx,my,m_width,m_height,width_mm, height_mm);
return i;
}
}
}
return 0;
}
int px_h=1024, px_v=768; // size in pixel
double x_dpi, y_dpi;
void set_dpi(GLFWwindow* window, int px, int py)
{ int wx, wy, ww, wh;
glfwGetWindowPos(window, &wx, &wy);
glfwGetWindowSize(window, &ww, &wh);
find_monitor(wx,wy);
x_dpi=25.5*px*m_width/width_mm/ww;
y_dpi=25.5*py*m_height/height_mm/wh;
LOG("Window pos: %d x %d, size: %d x %d, %dpx x %dpx\n",wx, wy,ww,wh,px,py);
LOG("dpi: %f x %f\n",x_dpi,y_dpi);
}
void framebuffer_size_callback(GLFWwindow* window, int w, int h)
{ px_h=w; px_v=h;
glViewport(0, 0, w, h);
set_dpi(window,w,h);
//LOG("w=%d, h=%d\n",w,h);
hint_resize(px_h,px_v,scale*x_dpi,scale*y_dpi);
hint_page();
}
void init_dpi(GLFWwindow* window)
{ int px,py;
glfwGetFramebufferSize(window, &px, &py);
set_dpi(window,px,py);
}
void hint_unmap(void)
{ hget_unmap();
}
bool hint_map(void)
{ return hget_map();
}
int open_file(int home)
{ hint_clear_fonts(true);
if (!hint_begin()) return 0;
if (home)
hint_page_home();
else
hint_page_top(0);
// strncpy(title_name,hin_name,MAX_PATH);
// SetNavigationTree();
//SetWindowText(hMainWnd,title_name);
return 1;
}
static void reload_file(void)
{ double fpos=hint_get_fpos();
hint_begin();
pos=hint_set_fpos(fpos);
//LOG("reloading...\n");
}
static int new_file_time(void)
{ struct stat st;
if (hin_name!=NULL &&
stat(hin_name,&st)==0 &&
st.st_size>0)
{
//LOG("file %s %lu\n",hin_name,st.st_mtime);
if (st.st_mtime>hin_time)
return 1;
else
return 0;
}
return 0;
}
static int set_hin_name(char *fn)
{ size_t sl;
if (hin_name!=NULL) { free(hin_name); hin_name=NULL; }
{ hin_name=malloc(strlen(fn)+1);
if (hin_name==NULL)
{ hint_error("Out of memory for file name", fn);
return 0;
}
strcpy(hin_name,fn);
}
sl=strlen(hin_name);
if (sl>4 && strncmp(hin_name+sl-4,".hnt",4)!=0)
{ hint_error("Unknown File Type,I dont know how to open this file", hin_name);
return 0;
}
return 1;
}
#if (WITH_GTK==2) || (WITH_GTK==3)
#include <gtk/gtk.h>
static int file_chooser(void)
{ GtkWidget *dialog;
GtkFileFilter *filter;
gint res;
if ( !gtk_init_check( NULL, NULL ) )
{ fprintf(stderr,"ERROR: Unable to initialize GTK\n");
return 0;
}
dialog = gtk_file_chooser_dialog_new ("Open File",
NULL,/* no parent */
GTK_FILE_CHOOSER_ACTION_OPEN,
"_Cancel", GTK_RESPONSE_CANCEL,
"_Open", GTK_RESPONSE_ACCEPT,
NULL);
filter = gtk_file_filter_new();
gtk_file_filter_set_name( filter, "HINT file" );
gtk_file_filter_add_pattern( filter, "*.hnt");
gtk_file_chooser_add_filter( GTK_FILE_CHOOSER(dialog), filter );
res = gtk_dialog_run (GTK_DIALOG (dialog));
if (res == GTK_RESPONSE_ACCEPT)
{ char *fn;
fn = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (dialog));
res=set_hin_name(fn);
g_free (fn);
}
else
res=0;
gtk_widget_destroy (dialog);
while (gtk_events_pending()) gtk_main_iteration();
return res;
}
#else
static int file_chooser(void)
{ return 0; }
#endif
static int set_input_file(char *fn)
{
if (fn!=NULL)
return set_hin_name(fn);
else
return file_chooser();
}
int dark = 0, loading=0, autoreload=0, home=0;
int usage(void)
{ return hint_error("Usage:", "hintview [options] file\n"
"Call 'hintview --help' for details.\n");
}
int help(void)
{ fprintf(stdout,"%s",
"Usage: hintview [options] file\n"
"Options:\n"
" -a Start in autoreload mode.\n"
" -h Start with the documents home page.\n"
" -n Start in night mode.\n"
#if 0
" -o Show the documents outline.\n"
#endif
" -z Start with zoom level 100%.\n"
" --help Display this message.\n"
" --version Display the version.\n"
"\n"
"See the hintview man page for more details.\n"
);
return 0;
}
int command_line(int argc, char *argv[])
{ int i;
for (i=1; argv[i]!=NULL && argv[i][0]=='-'; i++)
{ switch (argv[i][1])
{ case '-':
if (strcmp(argv[i]+2,"help")==0) return help();
else if (strcmp(argv[i]+2,"version")==0)
{ fprintf(stdout,"hintview version %d.%d.%d\n", VERSION, REVISION, PATCHLEVEL);
return 0;
}
else
return usage();
case 'a': autoreload=1; break;
case 'd':
i++; if (argv[i]==NULL) debugflags = -1;
else debugflags=strtol(argv[i],NULL,16);
break;
case 'n': dark=1; break;
case 'o': break;
case 'z': scale=SCALE_NORMAL; break;
case 'h': home=1; break;
default: return usage();
}
}
if (!set_input_file(argv[i]))
return usage();
return 1;
}
GLFWcursor *drag_cursor, *hand_cursor, *arrow_cursor;
int mouse_down=0, drag=0, on_link=0;
void clear_cursor(void)
{ if (on_link||drag)
{ glfwSetCursor(window, arrow_cursor); on_link=drag=0;}
}
/* combining the key with the shift, control, alt or super flag */
#define KEY_MOD(K,M) (((K)<<4)|((M)&0xF))
#define KEY(K) KEY_MOD(K,0)
#define CTRL(K) KEY_MOD(K,GLFW_MOD_CONTROL)
void key_callback(GLFWwindow* window, int key, int scancode, int action, int mods)
{ if (action!=GLFW_PRESS) return;
switch (KEY_MOD(key,mods)) {
case CTRL(GLFW_KEY_Q):
glfwSetWindowShouldClose(window,1);
break;
case CTRL(GLFW_KEY_N):
dark=!dark;
hint_dark(dark);
break;
case KEY(GLFW_KEY_HOME):
case CTRL(GLFW_KEY_H):
hint_page_home();
clear_cursor();
break;
case CTRL(GLFW_KEY_Z):
case CTRL(GLFW_KEY_Y): /* US keyboard */
scale=SCALE_NORMAL;
hint_resize(px_h,px_v,scale*x_dpi,scale*y_dpi);
hint_page();
hint_clear_fonts(true);
clear_cursor();
break;
case KEY(GLFW_KEY_PAGE_DOWN):
pos=hint_page_next();
hint_page();
clear_cursor();
break;
case KEY(GLFW_KEY_PAGE_UP):
pos=hint_page_prev();
hint_page();
clear_cursor();
break;
case CTRL(GLFW_KEY_A): /* auto reload */
autoreload=!autoreload;
if (!autoreload)
break; /* else fall through to reload */
case CTRL(GLFW_KEY_R): /* reload */
if (!loading)
{ loading=1;
HINT_TRY reload_file();
loading=0;
}
clear_cursor();
break;
case CTRL(GLFW_KEY_S): /* search */
break;
case CTRL(GLFW_KEY_F): /* file */
if (set_input_file(NULL))
open_file(home);
break;
case CTRL(GLFW_KEY_O): /* outlines */
default:
// LOG("key %d, scan %d, action %d, mosd %d\n",key, scancode, action, mods);
break;
}
}
/* convert pixel to scaled points (including scale) */
#define PX2SP(X,DPI) floor((X)*ONE*72.27/((DPI)*scale))
void mouse_click(void)
{ double x,y;
int link;
glfwGetCursorPos(window, &x, &y);
//LOG("xy= %fx%f\n", x,y);
HINT_TRY {
link=hint_find_link(PX2SP(x,x_dpi),PX2SP(y,y_dpi),2*ONE);
if (link>=0)
{ hint_link_page(link);
clear_cursor();
}
}
}
double x_start, y_start, xy_start, scale_start, time_start;
#define DELTA_T 0.4
#define DELTA_XY 16.0
static void cursor_position_callback(GLFWwindow* window, double x, double y)
{ //LOG("xy= %fx%f\n", x-x_start,y-y_start);
double f;
if (!mouse_down)
{ int link;
link=hint_find_link(PX2SP(x,x_dpi),PX2SP(y,y_dpi),2*ONE);
if (link>=0 && !on_link)
{ glfwSetCursor(window, hand_cursor); on_link=1; }
else if (link<0 && on_link)
{ glfwSetCursor(window, arrow_cursor); on_link=0; }
return;
}
if (!drag) /* we dont know whether this is a click or a drag */
{ double d = (x-x_start)*(x-x_start)+(y-y_start)*(y-y_start);
if (d<= DELTA_XY)
{ double t=glfwGetTime();
if (t<=time_start+DELTA_T)
return;
}
/* start dragging */
drag=1;
glfwSetCursor(window, drag_cursor);
xy_start=x_start*x_start+y_start*y_start;
}
/* dragging */
f=(x_start*x+y_start*y)/xy_start; /* projection of (x,y) on (x_start,y_start) */
scale=scale_start*f;
if (scale < SCALE_MIN) scale=SCALE_MIN;
if (scale > SCALE_MAX) scale=SCALE_MAX;
hint_resize(px_h,px_v,scale*x_dpi,scale*y_dpi);
hint_page();
}
void mouse_button_callback(GLFWwindow* window, int button, int action, int mods)
{ if (button == GLFW_MOUSE_BUTTON_LEFT)
{ if (action == GLFW_PRESS)
{ glfwGetCursorPos(window, &x_start, &y_start);
time_start=glfwGetTime();
scale_start=scale;
drag=0;
mouse_down =1;
}
else if (action == GLFW_RELEASE)
{ mouse_down=0;
if (drag) /* end dragging */
{ hint_clear_fonts(true);
clear_cursor();
}
else
mouse_click();
}
}
}
void cursor_enter_callback(GLFWwindow* window, int entered)
{ if (entered && autoreload && new_file_time())
reload_file();
//LOG("entered=%d auto=%d\n",entered, autoreload);
}
int create_window(void)
{ if( !glfwInit() )
{
hint_error("GLFW", "Failed to initialize GLFW\n" );
getchar();
return 0;
}
glfwSetErrorCallback(error_callback);
glfwWindowHint(GLFW_SAMPLES, 4);
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3);
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3);
glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GL_TRUE); // To make MacOS happy; should not be needed
glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE);
/* Open a window and create its OpenGL context */
window = glfwCreateWindow( px_h, px_v, "HintView", NULL, NULL);
if( window == NULL ){
hint_error("GLFW","Failed to open GLFW window.\n"
"If you have an Intel GPU, they are not 3.3 compatible.\n"
"Try the 2.1 version of the tutorials.\n" );
glfwTerminate();
return 0;
}
glfwMakeContextCurrent(window);
glfwSetInputMode(window, GLFW_STICKY_KEYS, GL_TRUE);
glfwSetInputMode(window, GLFW_CURSOR, GLFW_CURSOR_NORMAL);
drag_cursor = glfwCreateStandardCursor(GLFW_HRESIZE_CURSOR);
hand_cursor = glfwCreateStandardCursor(GLFW_HAND_CURSOR);
arrow_cursor = glfwCreateStandardCursor(GLFW_ARROW_CURSOR);
//getDPI();
init_monitors();
init_dpi(window);
glfwSetFramebufferSizeCallback(window, framebuffer_size_callback);
glfwSetKeyCallback(window, key_callback);
glfwSetCursorEnterCallback(window,cursor_enter_callback);
glfwSetMouseButtonCallback(window, mouse_button_callback);
glfwSetCursorPosCallback(window, cursor_position_callback);
glfwSetCursorPos(window, px_h/2, px_v/2);
hint_render_on();
return 1;
}
int main(int argc, char *argv[])
{ hlog=stderr;
if (setjmp(hint_error_exit)!=0) return 1;
if (!command_line(argc,argv))
return 1;
if (!create_window())
return 1;
nativeSetDark(dark);
hint_resize(px_h,px_v,scale*x_dpi,scale*y_dpi);
if (!open_file(home))
return 1;
if (setjmp(hint_error_exit)==0)
do
{ hint_render();
glfwSwapBuffers(window);
glfwWaitEvents();
} // Check if the ESC key was pressed or the window was closed
while(glfwWindowShouldClose(window) == 0 );
nativeClear();
glfwDestroyWindow(window); // part of glfwTerminate
glfwTerminate();
return 0;
}
|