-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathRenLibUsersGuide.htm
More file actions
3813 lines (3497 loc) · 128 KB
/
Copy pathRenLibUsersGuide.htm
File metadata and controls
3813 lines (3497 loc) · 128 KB
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
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD><TITLE>Users Guide - RenLib 3.6</TITLE>
<META content="text/html; charset=windows-1252" http-equiv=Content-Type>
<META content="Microsoft FrontPage 4.0" name=GENERATOR>
<META content=FrontPage.Editor.Document name=ProgId></HEAD>
<BODY bgColor=#ffffff>
<H2 align=center><FONT face=Verdana,Arial,Helvetica>
</h2>
<DIV align=center>
<h2>
<CENTER>
Users Guide - RenLib 3.6
</CENTER>
</h2>
<p><CENTER><font size="2">RenLib homepage:
<A href="http://www.renlib.tk">http://www.renlib.tk</A>
<A href="http://www.renju.nu/renlib">http://www.renju.se/renlib</A>
<br><br>
Frank Arkbo, Sweden, e-mail: <a href="mailto:renlib@renju.se">renlib@renju.se</a></font>
<BR>
</p>
<DIV align=center>
<CENTER>
<TABLE border=0 width="80%">
<TBODY>
<TR>
<TD width="100%"><FONT face=Verdana,Arial,Helvetica size=2>
<br>
<HR> <!---------------------------------------------------------------------->
<br>
<b>Introduction</b><br>
<A HREF="#Version History">Version History</A>
<A HREF="#Program Start">Program Start</A>
<A HREF="#Create a Library">Create a Library</A>
<A HREF="#Display">Display</A>
<A HREF="#Library">Library</A>
<A HREF="#Branch">Branch</A>
<A HREF="#Game">Game</A><br>
<br>
<b>Commands</b><br>
<A HREF="#File Menu">File Menu</A>
<A HREF="#Edit Menu">Edit Menu</A>
<A HREF="#View Menu">View Menu</A>
<A HREF="#Move Menu">Move Menu</A>
<A HREF="#Position Menu">Position Menu</A>
<A HREF="#Options Menu">Options Menu</A>
<A HREF="#Browser Menu">Browser Menu</A>
<A HREF="#Help Menu">Help Menu</A>
<A HREF="#Mouse Button">Mouse Button</A><br>
<br>
<b>Image Tool</b><br>
<A HREF="#CoffeeCup Free Viewer Plus">CoffeeCup Free Viewer Plus</A><br>
<A HREF="#PrintKey 2000">PrintKey 2000</A><br>
<br>
<HR> <!---------------------------------------------------------------------->
<br>
<A NAME="Version History"></A>
<H3><FONT face=Verdana,Arial,Helvetica>Version History</FONT></H3>
<table border="0" width="68%" cellspacing="1">
<tr>
<td width="8%" align="center"><FONT face=Verdana,Arial,Helvetica size=2> 3.6</font></td>
<td width="88%"><FONT face=Verdana,Arial,Helvetica size=2>
See <A HREF="#Release Note 3.6">Release Note 3.6</A>
(2006.07.16)</FONT></td>
</tr>
<tr>
<td width="8%" align="center"><FONT face=Verdana,Arial,Helvetica size=2> 3.5.2</font></td>
<td width="88%"><FONT face=Verdana,Arial,Helvetica size=2>
See <A HREF="#Release Note 3.5.2">Release Note 3.5.2</A>
(2005.06.06)</FONT></td>
</tr>
<tr>
<td width="8%" align="center"><FONT face=Verdana,Arial,Helvetica size=2> 3.5.1</font></td>
<td width="88%"><FONT face=Verdana,Arial,Helvetica size=2>
See <A HREF="#Release Note 3.5.1">Release Note 3.5.1</A>
(2005.05.17)</FONT></td>
</tr>
<tr>
<td width="8%" align="center"><FONT face=Verdana,Arial,Helvetica size=2> 3.5</font></td>
<td width="88%"><FONT face=Verdana,Arial,Helvetica size=2>
See <A HREF="#Release Note 3.5">Release Note 3.5</A>
(2005.03.13)</FONT></td>
</tr>
<tr>
<td width="8%" align="center"><FONT face=Verdana,Arial,Helvetica size=2> 3.4.2</font></td>
<td width="88%"><FONT face=Verdana,Arial,Helvetica size=2>
See <A HREF="#Release Note 3.4.2">Release Note 3.4.2</A>
(2004.05.12)</FONT></td>
</tr>
<tr>
<td width="8%" align="center"><FONT face=Verdana,Arial,Helvetica size=2> 3.4.1</font></td>
<td width="88%"><FONT face=Verdana,Arial,Helvetica size=2>
See <A HREF="#Release Note 3.4.1">Release Note 3.4.1</A>
(2004.04.12)</FONT></td>
</tr>
<tr>
<td width="8%" align="center"><FONT face=Verdana,Arial,Helvetica size=2> 3.4</font></td>
<td width="88%"><FONT face=Verdana,Arial,Helvetica size=2>
See <A HREF="#Release Note 3.4">Release Note 3.4</A>
(2004.03.28)</FONT></td>
</tr>
<tr>
<td width="8%" align="center"><FONT face=Verdana,Arial,Helvetica size=2> 3.3</font></td>
<td width="88%"><FONT face=Verdana,Arial,Helvetica size=2>
See <A HREF="#Release Note 3.3">Release Note 3.3</A>
(2003.10.30)</FONT></td>
</tr>
<tr>
<td width="8%" align="center"><FONT face=Verdana,Arial,Helvetica size=2> 3.2.1</font></td>
<td width="88%"><FONT face=Verdana,Arial,Helvetica size=2>
See <A HREF="#Release Note 3.2.1">Release Note 3.2.1</A>
(2003.05.31)</font></td>
</tr>
<tr>
<td width="8%" align="center"><FONT face=Verdana,Arial,Helvetica size=2> 3.2</font></td>
<td width="88%"><FONT face=Verdana,Arial,Helvetica size=2>
See <A HREF="#Release Note 3.2">Release Note 3.2</A>
(2003.04.27)</font></td>
</tr>
<tr>
<td width="8%" align="center"><FONT face=Verdana,Arial,Helvetica size=2> 3.1</font></td>
<td width="88%"><FONT face=Verdana,Arial,Helvetica size=2>
See <A HREF="#Release Note 3.1">Release Note 3.1</A>
(2002.03.23)</font></td>
</tr>
<tr>
<td width="8%" align="center"><FONT face=Verdana,Arial,Helvetica size=2> 3.0</font></td>
<td width="88%"><FONT face=Verdana,Arial,Helvetica size=2> See <A HREF="#Release Note 3.0">Release Note 3.0</A>
<FONT face=Verdana,Arial,Helvetica>(2002.01.19)
</FONT></font></td>
</tr>
<tr>
<td width="8%" align="center"><FONT face=Verdana,Arial,Helvetica size=2> 2.7</font></td>
<td width="88%"><FONT face=Verdana,Arial,Helvetica size=2> See <A HREF="#Release Note 2.7">Release Note 2.7</A></font></td>
</tr>
<tr>
<td width="8%" align="center"><FONT face=Verdana,Arial,Helvetica size=2> 2.6</font></td>
<td width="88%"><FONT face=Verdana,Arial,Helvetica size=2> See <A HREF="#Release Note 2.6">Release Note 2.6</A></font></td>
</tr>
<tr>
<td width="8%" align="center"><FONT face=Verdana,Arial,Helvetica size=2> 2.5</font></td>
<td width="88%"><FONT face=Verdana,Arial,Helvetica size=2> See <A HREF="#Release Note 2.5">Release Note 2.5</A></font></td>
</tr>
<tr>
<td width="8%" align="center"><FONT face=Verdana,Arial,Helvetica size=2> 2.4</font></td>
<td width="88%"><FONT face=Verdana,Arial,Helvetica size=2> See <A HREF="#Release Note 2.4">Release Note 2.4</A></font></td>
</tr>
<tr>
<td width="8%" align="center"><FONT face=Verdana,Arial,Helvetica size=2> 2.3</font></td>
<td width="88%"><FONT face=Verdana,Arial,Helvetica size=2> See <A HREF="#Release Note 2.3">Release Note 2.3</A></font></td>
</tr>
<tr>
<td width="8%" align="center"><FONT face=Verdana,Arial,Helvetica size=2> 2.2</font></td>
<td width="88%"><FONT face=Verdana,Arial,Helvetica size=2> See <A HREF="#Release Note 2.2">Release Note 2.2</A></font></td>
</tr>
<tr>
<td width="8%" align="center"><FONT face=Verdana,Arial,Helvetica size=2> 2.1</font></td>
<td width="88%"><FONT face=Verdana,Arial,Helvetica size=2> See <A HREF="#Release Note 2.1">Release Note 2.1</A></font></td>
</tr>
<tr>
<td width="8%" align="center"><FONT face=Verdana,Arial,Helvetica size=2> 2.0</font></td>
<td width="88%"><FONT face=Verdana,Arial,Helvetica size=2> See <A HREF="#Release Note 2.0">Release Note 2.0</A></font></td>
</tr>
<tr>
<td width="8%" align="center"><FONT face=Verdana,Arial,Helvetica size=2> 1.3</font></td>
<td width="88%"><FONT face=Verdana,Arial,Helvetica size=2> See <A HREF="#Release Note 1.3">Release Note 1.3</A></font></td>
</tr>
<tr>
<td width="8%" align="center"><FONT face=Verdana,Arial,Helvetica size=2> 1.2</font></td>
<td width="88%"><FONT face=Verdana,Arial,Helvetica size=2> New command: File | Read all games</font></td>
</tr>
<tr>
<td width="8%" align="center"><FONT face=Verdana,Arial,Helvetica size=2> 1.1</font></td>
<td width="88%"><FONT face=Verdana,Arial,Helvetica size=2> New command: File | Read PBeM or PlaySite game</font></td>
</tr>
<tr>
<td width="8%" align="center"><FONT face=Verdana,Arial,Helvetica size=2> 1.0</font></td>
<td width="88%"><FONT face=Verdana,Arial,Helvetica size=2> First version</font></td>
</tr>
</table>
<HR> <!---------------------------------------------------------------------->
<br>
<A NAME="Program Start"></A>
<H3><FONT face=Verdana,Arial,Helvetica>Program Start</FONT></H3>
When the program is started an empty renju board is displayed.<br>
<br>
If the size of the board is to big or small, adjust the size with the
<b>Size</b> commands in the <A HREF="#View Menu">View Menu</A><br>
<br>
To open an existing <A HREF="#Library">library</A>, use the <b>Open</b> [Ctrl+O]
command in the <A HREF="#File Menu">File Menu</A> and select, for example,
I7.lib or D4.lib. You can also double-click or use drag and drop to open files or
select files from the recent file list in the <A HREF="#File Menu">File Menu</A>.<br>
<br>
To create a new library, see
<A HREF="#Create a Library">Create a Library</A>.<br>
<br>
When a library file has been read, information is displayed on the bottom
status line about number of moves, comments and marks.<br>
<br>
To check an existing move in the library, left click the mouse pointing at
one of the smaller circles (variants). Then you will enter a new position
(branch) and see new variants from that position.<br>
<br>
To check a branch from an earlier position, press key B, or
right-click the mouse, to go back one move at the
time, until you reach the position where you want to
check another alternative move.<br>
<br>
You will see a small circle indicating an existing move
(variant) while you are going back.<br>
<br>
Click on another smaller circle, to enter a new position
(branch) and see new variants from that position.<br>
<br>
Note: A library is usually opened in <b>Display Mode</b> in which you can
only check existing moves. You can not update the library in Display Mode.<br>
<br>
<HR> <!---------------------------------------------------------------------->
<br>
<A NAME="Create a Library"></A>
<H3><FONT face=Verdana,Arial,Helvetica>Create a Library</FONT></H3>
To create a new library, use the <b>New</b> [Ctrl+N]
command in the <A HREF="#File Menu">File Menu</A>.
To open an existing library, see
<A HREF="#Program Start">Program Start</A>.<br>
<br>
You will see a renju board with one move already made in H8, the center
position. Left-click the mouse to insert new moves until you have
made a final position.<br>
<br>
To enter alternative moves, press key B, or
right-click the mouse, to go back one move at the
time, until you reach the position where you want to
make an alternative move.<br>
<br>
You will see a small circle indicating an existing move
(variant) while you are going back.<br>
<br>
Click on an empty position to insert a new move,
which will be in a new branch in the tree-structure.
Enter all moves until you reach a new final position.<br>
<br>
To insert more alternative moves, repeat the
steps above, i.e. going back and clicking on empty
positions.<br>
<br>
When you have entered many alternative moves in the
same position, you will see several small circles,
one for each variant.<br>
<br>
Finally, save the library using the <b>Save</b> [Ctrl+S]
command in the <A HREF="#File Menu">File Menu</A>.<br>
<br>
You can also enter comments for a move in update mode.<br>
It is possible to write two kind of comments: a one line comment and
a multiple lines comment. You can also mark a move, so it is easy to find
the position again. It is possible to search for comments and marks, using
the <b>Find Comment</b> [Ctrl+F] and <b>Find Mark</b> [Alt+F] commands in
the <A HREF="#Edit Menu">Edit Menu</A>.<br>
<br>
If you want to add more moves to the library, after saving
and exiting RenLib: Open the library using the <b>Open</b> [Ctrl+O]
command, change to update mode using the <b>Update Mode</b> [Ctrl+M]
command in the <A HREF="#Edit Menu">Edit Menu</A>
and repeat the steps above to insert new moves.<br>
<br>
Note: A new library is usually opened in <b>Update Mode</b> in which you
can add, modify or delete information in the library.<br>
<br>
<HR> <!---------------------------------------------------------------------->
<br>
<A NAME="Display"></A>
<H3><FONT face=Verdana,Arial,Helvetica>Display</FONT></H3>
The board is displayed on the left of the screen. The moves are displayed
from move no 1 until there are at least two variants, unless there is a
start position for the library.
Black and White circles indicates the positions saved in the library file.
Smaller circles indicates positions of variants. The last made move is
indicated with a small square.
If there is only one variant the mouse pointer is placed on that variant.
<br>
On the top line of the screen, the eventual comment for the current move is
displayed and multiple line comments are displayed to the right of the board.<br>
<br>
On the bottom status line, information is displayed about:<br>
- Board coordinate where the mouse is pointing at the moment.<br>
- Indication if the move is a start position or is marked.<br>
- Current move no.<br>
- Number of variants in the branch.<br>
- Display Mode or Update Mode.<br>
<br>
When the library is updated, it is indicated with <b>"*"</b> in the window
frame.<br>
<br>
<HR> <!---------------------------------------------------------------------->
<A NAME="Library"></A>
<H3><FONT face=Verdana,Arial,Helvetica>Library</FONT></H3>
To view a library it must be opened using the <b>Open</b> command,
see <A HREF="#File Menu">File Menu</A>.<br>
<br>
A library is stored in a file with suffix <b>.lib</b>, for
example I7.lib, using the <b>Save</b> command.<br>
<br>
When you update a library and save it again, the previous version
of the library file is renamed to suffix <b>.bak</b> (backup) so that
in case you made a mistake you can go back to the previous version
by renaming the <b>.bak</b> file back to <b>.lib</b> again.<br>
<br>
<HR> <!---------------------------------------------------------------------->
<A NAME="Branch"></A>
<H3><FONT face=Verdana,Arial,Helvetica>Branch</FONT></H3>
It is possible to extract a branch of a library, i.e.
a final position or a position with variant moves, and
save it in a separate file, using the <b>Save Position As...</b>
command, see <A HREF="#File Menu">File Menu</A>.<br>
<br>
This new file is also a library and can be opened with the <b>Open</b>
command.<br>
You can also merge another library into the current library using the
<b>Read...</b> or <b>Read All...</b> commands.<br>
<br>
Saving a branch can be useful, for example, when you want to show
a renju position in your library to another player.<br>
<br>
If you want to put together two libraries, one of the
libraries can be opened and the other one added into
the first one, using the <b>Read...</b> or <b>Read All...</b>
commands.<br>
<br>
The other library can be a branch or maybe only a final
position, for example an actual game. Since the first
library is going to be updated, the <b>Read...</b> and
<b>Read All...</b> commands are only available in Update Mode.<br>
<br>
Note that the <b>Read...</b> and <b>Read All...</b> commands
can be used repeatedly to merge several libraries together.<br>
<br>
<HR> <!---------------------------------------------------------------------->
<A NAME="Game"></A>
<H3><FONT face=Verdana,Arial,Helvetica>Game</FONT></H3>
The text games are e-mails are or text info, which are
stored as text files, with suffix <b>.txt</b> which
can be read using the <b>Read...</b> and
<b>Read All...</b> commands in the
<A HREF="#File Menu">File Menu</A>.<br>
<br>
A game is in a way the same thing as a branch, and
because it is not a library, it can only be added into
an existing library.
<br>
A library must be opened and since reading a game will
update the library, the <b>Read...</b> and <b>Read All...</b>
commands are only available in Update Mode.<br>
<br>
Note that the <b>Read...</b> and <b>Read All...</b> commands
can be used repeatedly to add several games into the
library.<br>
<br>
The <b>Open...</b> command is a short cut command
that first creates a new library and then reads the game
into this new library.<br>
<br>
The <b>Read All...</b> command can be useful when you have
many e-mail games.<br>
<br>
<u>Example:</u>
You have received many e-mails from the PBeM-server with
renju games and have put all of them in one directory.
To make a big library containing all games, you can use
the <b>Read...</b> command repeatedly for each game,
but this takes too long time.
The <b>Read all...</b> command simplifies this by reading all
files in a directory and its subdirectories.<br>
<br>
<HR> <!---------------------------------------------------------------------->
<H2><FONT face=Verdana,Arial,Helvetica>COMMANDS</FONT></H2>
<br>
<A NAME="File Menu"></A>
<H3><FONT face=Verdana,Arial,Helvetica>File Menu</FONT></H3>
<table cellspacing=1 cellpadding=5 border="1" bordercolor="#808080" width="975" height="1">
<tr>
<td width="272" height="1" colspan="2"><FONT face=Verdana,Arial,Helvetica size=2>
<b>New</b> [Ctrl+N]
</td>
<td width="654" height="1"><FONT face=Verdana,Arial,Helvetica size=2>
Create a new library, with first black move made in H8
</td>
<tr>
<td width="272" height="1" colspan="2"><FONT face=Verdana,Arial,Helvetica size=2>
<b>Open</b> [Ctrl+O]
</td>
<td width="654" height="1"><FONT face=Verdana,Arial,Helvetica size=2>
Open an existing RenLib library or open a Text game, RenJS games,
Datafree buf, GoRenjer PDB, POS file, Basecity game or ShowRenju bdt
as a new library.<br>
You can also double-click or use drag and drop.<br>
The following text game formats are supported:
PBeM, PlaySite, Text Board, Blip, Kurnik and
Renjuclass game.
</td>
<tr>
<td width="272" height="1" colspan="2"><FONT face=Verdana,Arial,Helvetica size=2><b>Read...</b></font>
</td>
<td width="654" height="1"><FONT face=Verdana,Arial,Helvetica size=2>
Read and merge selected file(s). Selection of one or more files is possible.<br>
The following file formats are accepted:
RenLib library, Text game, RenJS games, Datafree buf, GoRenjer PDB,
POS file and Basecity game or ShowRenju bdt.
</font>
</td>
<tr>
<td width="272" height="1" colspan="2"><FONT face=Verdana,Arial,Helvetica size=2><b>Read all...</b></font>
</td>
<td width="654" height="1"><FONT face=Verdana,Arial,Helvetica size=2>
Read and merge all files in selected directory and subdirectories
</FONT>
</td>
<tr>
<td width="272" height="1" colspan="2"><FONT face=Verdana,Arial,Helvetica size=2><b>Save</b> [Ctrl+S]</font>
</td>
<td width="654" height="1"><FONT face=Verdana,Arial,Helvetica size=2>
Save the current library</font>
</td>
<tr>
<td width="272" height="1" colspan="2"><FONT face=Verdana,Arial,Helvetica size=2>
<b>Save Library As...</b>
</font>
</td>
<td width="654" height="1"><FONT face=Verdana,Arial,Helvetica size=2>
Save the current library in another file, as a new
library, a GoRenjer PDB file or a ShowRenju BDT file.
</FONT>
</td>
<tr>
<td width="272" height="1" colspan="2"><FONT face=Verdana,Arial,Helvetica size=2>
<b>Save Position As...</b></font>
</td>
<td width="654" height="1"><FONT face=Verdana,Arial,Helvetica size=2>
Save the current position as a RenLib library, Text
game, POS file, RenLib applet, Renartist applet,
Renju class diagram or Bitmap file.
</FONT>
<tr>
<td width="136" height="1" rowspan="3"><FONT face=Verdana,Arial,Helvetica size=2>
<b>Export Library</b></font>
</td>
<td width="136" height="1"><FONT face=Verdana,Arial,Helvetica size=2>
<b>Text Board</b></font>
</td>
<td width="654" height="1">
<FONT face=Verdana,Arial,Helvetica size=2>
Save all end positions in text board format in a directory, using file names RenLib00001.txt, etc.
It is possible to limit the number of saved positions by searching for a comment,
for example player name, prior to running the command.</FONT>
</td>
<tr>
<td width="136" height="0">
<FONT face=Verdana,Arial,Helvetica size=2>
<b>RenLib applet</b></font>
</td>
<td width="654" height="0">
<FONT face=Verdana,Arial,Helvetica size=2>
Save all end positions in RenLib applet format in a directory, using file names RenLib00001.htm, etc.
It is possible to limit the number of saved positions by searching for a comment,
for example player name, prior to running the command.<br>
A "RenLib Applet" dialog is provided to edit title of applet, select size of applet and whether
comments are displayed or not. A file games.htm is created, which lists links to all htm-files using
one line comments as link names.
</FONT>
</td>
<tr>
<td width="136" height="0">
<FONT face=Verdana,Arial,Helvetica size=2>
<b>Game Collection</b>
</font>
</td>
<td width="654" height="0">
<FONT face=Verdana,Arial,Helvetica size=2>
Export positions in the library to game collection format.
See <a href="#Game Collection">Game Collection</a>
</font>
</td>
<tr>
<td width="272" height="1" colspan="2"><FONT face=Verdana,Arial,Helvetica size=2>
<b>Make tournament RenLib applets</b>
</td>
<td width="654" height="1"><FONT face=Verdana,Arial,Helvetica size=2>
Create tournament html files displaying RenLib applet.<br>
See <A HREF="#Tournament applets">Tournament applets</A>
</font>
</td>
<tr>
<td width="272" height="1" colspan="2"><FONT face=Verdana,Arial,Helvetica size=2>
<b>Recent File list</b>
</font>
</td>
<td width="654" height="1"><FONT face=Verdana,Arial,Helvetica size=2>
When a library is opened or saved it is added to the recent file list, which can contain
up to 10 entries. To open a file from the recent file list, simply select it from the
File Menu. Also game files etc. are added to the recent file list.</font>
</td>
<tr>
<td width="272" height="1" colspan="2"><FONT face=Verdana,Arial,Helvetica size=2>
<b>Exit</b>
</td>
<td width="654" height="1"><FONT face=Verdana,Arial,Helvetica size=2>
Exit program
</td>
</table>
<br>
<br>
<A NAME="Edit Menu"></A>
<H3><FONT face=Verdana,Arial,Helvetica>Edit Menu</FONT></H3>
<table cellspacing=1 cellpadding=5 bordercolor="#808080" border="1" width="974">
<tr>
<td width="236"><FONT face=Verdana,Arial,Helvetica size=2>
<b>Update Mode</b> [Ctrl+M]
<td width="706"><FONT face=Verdana,Arial,Helvetica size=2>
Change to update mode (from display mode)
</td>
<tr>
<td width="236"><FONT face=Verdana,Arial,Helvetica size=2>
<b>Display Mode</b> [Ctrl+M]
</td>
<td width="706"><FONT face=Verdana,Arial,Helvetica size=2>
Change to display mode (from update mode)
</td>
<tr>
<td width="236"><FONT face=Verdana,Arial,Helvetica size=2>
<b>Problem Mode</b>
</td>
<td width="706"><FONT face=Verdana,Arial,Helvetica size=2>
Change to problem mode <b>TBD: Description</b>
</td>
<tr>
<td width="236"><FONT face=Verdana,Arial,Helvetica size=2>
<b>Mark</b>
</td>
<td width="706"><FONT face=Verdana,Arial,Helvetica size=2>
Set or Clear Mark
</td>
<tr>
<td width="236"><FONT face=Verdana,Arial,Helvetica size=2>
<b>Delete Move</b> [Delete, Backspace]
</td>
<td width="706"><FONT face=Verdana,Arial,Helvetica size=2>
Delete current move and variants
</td>
<tr>
<td width="236"><FONT face=Verdana,Arial,Helvetica size=2>
<b>Delete Variants</b>
</td>
<td width="706"><FONT face=Verdana,Arial,Helvetica size=2>
Delete all variants in current position
</td>
<tr>
<td width="236"><FONT face=Verdana,Arial,Helvetica size=2>
<b>Clear All Marks</b>
</td>
<td width="706"><FONT face=Verdana,Arial,Helvetica size=2>
Clear all marks in the library.
</td>
<tr>
<td width="236"><FONT face=Verdana,Arial,Helvetica size=2>
<b>Insert Pass Move</b>
</td>
<td width="706"><FONT face=Verdana,Arial,Helvetica size=2>
Insert a pass move in current position
</td>
<tr>
<td width="236"><FONT face=Verdana,Arial,Helvetica size=2>
<b>Find Comment</b> [Ctrl+F]
</td>
<td width="706"><FONT face=Verdana,Arial,Helvetica size=2>
Find a comment or board text in the current branch.
To search the library, go to first move before running the command.
Run Find Next or Find Previous to continue search.<br>
Choose option Board Text to find Board Text instead
of comment text.
</td>
<tr>
<td width="236"><FONT face=Verdana,Arial,Helvetica size=2>
<b>Find Mark</b> [Alt+F]
</td>
<td width="706"><FONT face=Verdana,Arial,Helvetica size=2>
Find marked moves in the current branch.
To search the library, go to first move before running the command.
Run Find Next or Find Previous to continue search.</font>
</td>
<tr>
<td width="236"><FONT face=Verdana,Arial,Helvetica size=2>
<b>Find Move</b> [Alt+M]
</td>
<td width="706"><FONT face=Verdana,Arial,Helvetica size=2>
Search move numbers in the current branch.
To search the library, go to first move before running the command.
Run Find Next or Find Previous to continue search.</font>
<tr>
<td width="236"><FONT face=Verdana,Arial,Helvetica size=2>
<b>Find Same Position</b> [Ctrl+P]
</td>
<td width="706"><FONT face=Verdana,Arial,Helvetica size=2>
In any position, run the Find command to search for other positions
that are same in the current library, i.e. the order of moves is different
or the position is rotated and/or reflected.
Run Find Next or Find Previous to continue search.</font>
<tr>
<td width="236"><FONT face=Verdana,Arial,Helvetica size=2>
<b>Find Similar Position</b> [Alt+P]
</td>
<td width="706"><FONT face=Verdana,Arial,Helvetica size=2>
In any position, run the Find command to search for other positions that
are similar in the current library, i.e. besides same positions,
also positions that are same if there was no border, are searched.
Run Find Next or Find Previous to continue search.</font>
<tr>
<td width="236"><FONT face=Verdana,Arial,Helvetica size=2>
<b>Find Next</b> [F3]
</td>
<td width="706"><FONT face=Verdana,Arial,Helvetica size=2>
Find next mark, comment, move or position.
</td>
<tr>
<td width="236"><FONT face=Verdana,Arial,Helvetica size=2>
<b>Find Previous</b> [Shift-F3]
</td>
<td width="706"><FONT face=Verdana,Arial,Helvetica size=2>
Find previous mark, comment, move or position.
</td>
<tr>
<td width="236"><FONT face=Verdana,Arial,Helvetica size=2>
<b>Set Start Position</b>
</td>
<td width="706"><FONT face=Verdana,Arial,Helvetica size=2>
Mark a position in the library to be the starting<br>
position when it is opened next time.
</td>
<tr>
<td width="236"><FONT face=Verdana,Arial,Helvetica size=2>
<b>Clear Start Position</b>
</td>
<td width="706"><FONT face=Verdana,Arial,Helvetica size=2>
Clear the starting position.
</td>
<tr>
<td width="236"><FONT face=Verdana,Arial,Helvetica size=2>
<b>Find Start Position</b> [Alt+S]
</td>
<td width="706"><FONT face=Verdana,Arial,Helvetica size=2>
Find start position in library.
</td>
<tr>
<td width="236"><FONT face=Verdana,Arial,Helvetica size=2>
<b><a name="Auto Enter Board Text">Auto Enter Board Text</a></b> [Alt+B]</font>
</td>
<td width="706"><FONT face=Verdana,Arial,Helvetica size=2>
Toggles Auto Enter Board Text mode. When activated,
Control + Left click will automatically enter board
text in the position and next time the board text is
incremented by one. This will allow you to enter 'A',
'B', 'C', ... 'Z', 'AA', 'AB' or '1', '2' , '3', ...
'9', '10' etc to show move sequences without entering
moves, for example a VCF move sequence.
The next board text to be entered is displayed on the status line.<br>
If there is no board text in the position, then 'A' will be the next board text.
Otherwise, the highest board text in the position will be incremented by one and used
for the next board text.<br>
When you change position, the next auto enter board text is automatically updated.
</font>
</td>
<tr>
<td width="236"><FONT face=Verdana,Arial,Helvetica size=2>
<b>Set Next Auto Board Text</b>
</td>
<td width="706"><FONT face=Verdana,Arial,Helvetica size=2>
Set next 1-2 characters to be used for Auto Enter
Board Text. Auto Enter Board Text mode is activated.
</td>
<tr>
<td width="236"><FONT face=Verdana,Arial,Helvetica size=2>
<b>Find VCF</b> [F4]
</td>
<td width="706"><FONT face=Verdana,Arial,Helvetica size=2>
Search VCF (Victory by Continuous Fours) in the current
position. If VCF if found, the board displays the VCF move
sequence and the status bar shows the number of moves.</font>
</td>
<tr>
<td width="236"><FONT face=Verdana,Arial,Helvetica size=2>
<b>Hide VCF</b> [F4]
</FONT>
</td>
<td width="706"><FONT face=Verdana,Arial,Helvetica size=2>
Hide a displayed VCF sequence.</font>
</td>
<tr>
<td width="236"><FONT face=Verdana,Arial,Helvetica size=2>
<b>Find VCT</b> [F5]</font>
</td>
<td width="706"><FONT face=Verdana,Arial,Helvetica size=2>
Search VCT (Victory by Continuous Threats) in the current
position. If VCT if found, the board displays the first move in the VCT sequence.</font>
</td>
<tr>
<td width="236"><FONT face=Verdana,Arial,Helvetica size=2>
<b>Hide VCT</b> [F5]
</FONT>
</td>
<td width="706"><FONT face=Verdana,Arial,Helvetica size=2>
Hide a displayed VCT sequence.</font>
</td>
<tr>
<td width="236"><FONT face=Verdana,Arial,Helvetica size=2>
<b>Stop VCF/VCT</b> [F6]
</FONT>
</td>
<td width="706"><FONT face=Verdana,Arial,Helvetica size=2>
Stop VCF/VCT search
</td>
<tr>
<td width="236"><FONT face=Verdana,Arial,Helvetica size=2>
<b>Convert To Standard</b>
</FONT>
</td>
<td width="706"><FONT face=Verdana,Arial,Helvetica size=2>
Convert positions in the library to standard.
</FONT>
</td>
</table>
<br>
<br>
<A NAME="View Menu"></A>
<H3><FONT face=Verdana,Arial,Helvetica>View Menu</FONT></H3>
<table cellspacing=1 cellpadding=5 bordercolor="#808080" border="1" width="972" height="2395">
<tr>
<td rowspan="4" width="92" height="122"><FONT face=Verdana,Arial,Helvetica size=2>
<b>Size</b>
</FONT>
</td>
<td width="260" colspan="2" height="16"><FONT face=Verdana,Arial,Helvetica size=2><b>Large</b>
</font>
</td>
<td width="574" height="16"><FONT face=Verdana,Arial,Helvetica size=2>
Change size of stones and board
</td>
<tr>
<td width="260" colspan="2" height="16"><FONT face=Verdana,Arial,Helvetica size=2><b>Medium</b>
</FONT>
</td>
<td width="574" height="16"><FONT face=Verdana,Arial,Helvetica size=2>
Change size of stones and board
</td>
<tr>
<td width="260" colspan="2" height="16"><FONT face=Verdana,Arial,Helvetica size=2><b>Small</b>
</FONT>
</td>
<td width="574" height="16"><FONT face=Verdana,Arial,Helvetica size=2>
Change size of stones and board
</td>
<tr>
<td width="260" colspan="2" height="32"><FONT face=Verdana,Arial,Helvetica size=2><b>Default Size</b>
</FONT>
</td>
<td width="574" height="32"><FONT face=Verdana,Arial,Helvetica size=2>
Change size of stones and board to the default size for current screen resolution.<br>
<i>Small</i> is default size for resolution up to 800 x 600.<br>
<i>Medium</i> is default size for resolution up to 1152 x 864.<br>
<i>Large</i> is default size for higher resolution.
</td>
<tr>
<td width="92" rowspan="5" height="138"><FONT face=Verdana,Arial,Helvetica size=2>
<b>Coordinates</b>
</FONT>
</td>
<td width="260" colspan="2" height="16"><FONT face=Verdana,Arial,Helvetica size=2><b>None</b>
</FONT>
</td>
<td width="574" height="16"><FONT face=Verdana,Arial,Helvetica size=2>
No Coordinates
</td>
<tr>
<td width="260" colspan="2" height="16"><FONT face=Verdana,Arial,Helvetica size=2><b>A - O</b>
</FONT>
</td>
<td width="574" height="16"><FONT face=Verdana,Arial,Helvetica size=2>
A B C D E F G H I J K L M N O
</td>
<tr>
<td width="260" colspan="2" height="16"><FONT face=Verdana,Arial,Helvetica size=2><b>A - P</b>
</FONT>
</td>
<td width="574" height="16"><FONT face=Verdana,Arial,Helvetica size=2>
A B C D E F G H J K L M N O P
</td>
<tr>
<td width="260" colspan="2" height="18"><FONT face=Verdana,Arial,Helvetica size=2><b>Swap 1 - 15</b></font>
</td>
<td width="574" height="18"><FONT face=Verdana,Arial,Helvetica size=2>
Swap order of row numbers between ascending and descending.
</td>
<tr>
<td width="260" colspan="2" height="16"><FONT face=Verdana,Arial,Helvetica size=2>
<b>Follow rotation and reflection</b></font>
</td>
<td width="574" height="16"><FONT face=Verdana,Arial,Helvetica size=2>
Show coordinates according to rotation and reflection.
</td>
<tr>
<td width="92" rowspan="7" height="255"><FONT face=Verdana,Arial,Helvetica size=2>
<b>Font</b></font>
</td>
<td width="95" rowspan="2" height="62"><FONT face=Verdana,Arial,Helvetica size=2><b>Comment</b></font>
</td>
<td width="151" height="32"><FONT face=Verdana,Arial,Helvetica size=2><b>Choose font...</b></FONT>
</td>
<td width="574" height="32"><FONT face=Verdana,Arial,Helvetica size=2>
Choose comment font.<br>
If you experience problems with your local language,
try to choose another font/size.</font>
</td>
<tr>
<td width="151" height="16"><FONT face=Verdana,Arial,Helvetica size=2><b>Default</b></font>
</td>
<td width="574" height="16"><FONT face=Verdana,Arial,Helvetica size=2>
Choose default font: System</font>
</td>
<tr>
<td width="95" rowspan="2" height="64"><FONT face=Verdana,Arial,Helvetica size=2><b>Board Text</b></font>
</td>
<td width="151" height="34"><FONT face=Verdana,Arial,Helvetica size=2><b>Choose font...</b></FONT>
</td>
<td width="574" height="34"><FONT face=Verdana,Arial,Helvetica size=2>
Choose board text font.<br>
If you experience problems with your local language,
try to choose another font/size.</font>
</td>
<tr>
<td width="151" height="16"><FONT face=Verdana,Arial,Helvetica size=2><b>Default</b></font>
</td>
<td width="574" height="16"><FONT face=Verdana,Arial,Helvetica size=2>
Choose default font: System</font>
</td>
<tr>
<td width="95" height="62" rowspan="2"><FONT face=Verdana,Arial,Helvetica size=2><b>Coordinate and Stone Number</b></font>
</td>
<td width="151" height="32"><FONT face=Verdana,Arial,Helvetica size=2><b>Choose font...</b></FONT>
</td>
<td width="574" height="32"><FONT face=Verdana,Arial,Helvetica size=2>
Choose coordinate and stone number font.<br>
If you experience problems with your local language,
try to choose another font/size.</font>
</td>
<tr>
<td width="151" height="16"><FONT face=Verdana,Arial,Helvetica size=2><b>Default</b></FONT>
</td>
<td width="574" height="16"><FONT face=Verdana,Arial,Helvetica size=2>
Choose default font: System</font>
</td>
<tr>
<td width="260" colspan="2" height="25"><FONT face=Verdana,Arial,Helvetica size=2>
<b>All Default</b></font>
</td>
<td width="574" height="25"><FONT face=Verdana,Arial,Helvetica size=2>
Choose default font for all: System</font>
</td>
<tr>
<td width="92" rowspan="40" height="1132"><FONT face=Verdana,Arial,Helvetica size=2>
<b>Color</b></font>
</td>
<td width="95" height="46" rowspan="2"><FONT face=Verdana,Arial,Helvetica size=2><b>Background</b></font>
</td>
<td width="151" height="16"><FONT face=Verdana,Arial,Helvetica size=2><b>Choose Color</b></font>
</td>
<td width="574" height="16"><FONT face=Verdana,Arial,Helvetica size=2>
Choose color of background</font>
</td>
<tr>
<td width="151" height="16"><FONT face=Verdana,Arial,Helvetica size=2><b>Default</b></FONT>
</td>
<td width="574" height="16"><FONT face=Verdana,Arial,Helvetica size=2>
Choose default color of background: Gray</font>
</td>
<tr>
<td width="95" height="106" rowspan="4"><FONT face=Verdana,Arial,Helvetica size=2><b>Board</b></font>
</td>
<td width="151" height="16"><FONT face=Verdana,Arial,Helvetica size=2><b>Choose Color</b></font>
</td>
<td width="574" height="16"><FONT face=Verdana,Arial,Helvetica size=2>
Choose color of board</font>
</td>
<tr>
<td width="151" height="16"><FONT face=Verdana,Arial,Helvetica size=2><b>Default</b></FONT>
</td>
<td width="574" height="16"><FONT face=Verdana,Arial,Helvetica size=2>
Choose default color of board: Dark Yellow, RGB(192,192,0)</font>
</td>
<tr>
<td width="151" height="16"><FONT face=Verdana,Arial,Helvetica size=2><b>Choose Bitmap ...</b></font>
</td>
<td width="574" height="16"><FONT face=Verdana,Arial,Helvetica size=2>
Choose bitmap of board</font>
</td>
<tr>
<td width="151" height="16"><FONT face=Verdana,Arial,Helvetica size=2><b>Default</b></FONT>
</td>
<td width="574" height="16"><FONT face=Verdana,Arial,Helvetica size=2>
Choose default bitmap of board: Wood1.bmp</font>
</td>
<tr>
<td width="95" rowspan="3" height="78"><FONT face=Verdana,Arial,Helvetica size=2><b>Stone</b></font>
</td>
<td width="151" height="16"><FONT face=Verdana,Arial,Helvetica size=2><b>Black Color</b></font>
</td>
<td width="574" height="16"><FONT face=Verdana,Arial,Helvetica size=2>
Choose color of black stone
</td>
<tr>
<td width="151" height="16"><FONT face=Verdana,Arial,Helvetica size=2><b>White Color</b></FONT>
</td>
<td width="574" height="16"><FONT face=Verdana,Arial,Helvetica size=2>
Choose color of white stone
</td>
<tr>
<td width="151" height="18"><FONT face=Verdana,Arial,Helvetica size=2><b>Default</b></FONT>
</td>
<td width="574" height="18"><FONT face=Verdana,Arial,Helvetica size=2>
Choose default colors of stones: Black and White
</td>
<tr>
<td width="95" rowspan="3" height="78"><FONT face=Verdana,Arial,Helvetica size=2><b>Variant</b></font>
</td>
<td width="151" height="16"><FONT face=Verdana,Arial,Helvetica size=2><b>Black Color</b></font>
</td>
<td width="574" height="16"><FONT face=Verdana,Arial,Helvetica size=2>
Choose color of black variant
</td>
<tr>
<td width="151" height="16"><FONT face=Verdana,Arial,Helvetica size=2><b>White Color</b></FONT>
</td>
<td width="574" height="16"><FONT face=Verdana,Arial,Helvetica size=2>
Choose color of white variant
</td>
<tr>
<td width="151" height="18"><FONT face=Verdana,Arial,Helvetica size=2><b>Default</b></FONT>
</td>
<td width="574" height="18"><FONT face=Verdana,Arial,Helvetica size=2>
Choose default colors of variants: Black and White
</td>
<tr>
<td width="95" rowspan="2" height="48"><FONT face=Verdana,Arial,Helvetica size=2><b>Last Move</b></font>
</td>
<td width="151" height="16"><FONT face=Verdana,Arial,Helvetica size=2><b>Choose Color</b></font>
</td>
<td width="574" height="16"><FONT face=Verdana,Arial,Helvetica size=2>
Choose color of last move marker
</td>
<tr>
<td width="151" height="18"><FONT face=Verdana,Arial,Helvetica size=2><b>Default</b></FONT>
</td>
<td width="574" height="18"><FONT face=Verdana,Arial,Helvetica size=2>
Choose default color of last move marker:
Dark Yellow, RGB(192,192,0)
</td>
<tr>
<td width="95" rowspan="2" height="48"><FONT face=Verdana,Arial,Helvetica size=2><b>Forbidden</b></font>
</td>
<td width="151" height="16"><FONT face=Verdana,Arial,Helvetica size=2><b>Choose Color</b></font>
</td>
<td width="574" height="16"><FONT face=Verdana,Arial,Helvetica size=2>
Choose color of forbidden move marker
</td>
<tr>
<td width="151" height="18"><FONT face=Verdana,Arial,Helvetica size=2><b>Default</b></FONT>
</td>
<td width="574" height="18"><FONT face=Verdana,Arial,Helvetica size=2>
Choose default color of forbidden move marker: Red
</td>
<tr>
<td width="95" rowspan="3" height="39"><FONT face=Verdana,Arial,Helvetica size=2><b>VCF</b></font>
</td>
<td width="151" height="16"><FONT face=Verdana,Arial,Helvetica size=2><b>Black Color</b></font>
</td>
<td width="574" height="16"><FONT face=Verdana,Arial,Helvetica size=2>
Choose color of VCF move marker for black
</td>
<tr>
<td width="151" height="30"><FONT face=Verdana,Arial,Helvetica size=2><b>White Color</b></FONT>
</td>
<td width="574" height="30"><FONT face=Verdana,Arial,Helvetica size=2>
Choose color of VCF move marker for white
</td>
<tr>