Subversion Repositories jumper

Rev

Rev 13 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 daniel-mar 1
object HelpForm: THelpForm
2
  Left = 192
3
  Top = 103
4
  BorderIcons = [biSystemMenu, biMinimize]
30 daniel-mar 5
  BorderStyle = bsDialog
1 daniel-mar 6
  Caption = 'Help'
7
  ClientHeight = 276
8
  ClientWidth = 427
9
  Color = clBtnFace
10
  Font.Charset = DEFAULT_CHARSET
11
  Font.Color = clWindowText
12
  Font.Height = -11
13
  Font.Name = 'MS Sans Serif'
14
  Font.Style = []
30 daniel-mar 15
  Position = poScreenCenter
1 daniel-mar 16
  TextHeight = 13
17
  object HelpMemo: TMemo
18
    Left = 8
19
    Top = 8
20
    Width = 409
21
    Height = 217
22
    TabStop = False
23
    Color = clBtnFace
13 daniel-mar 24
    Lines.Strings = (
25
 
26
        'The rules of Peg Solitaire are simple. You have to jump over the' +
27
        ' neighboring '
28
 
29
        'stones in a similar way to the drafts to remove them. The game i' +
30
        's over when there '
31
      'are no more moves.'
32
      ''
33
 
34
        'ViaThinkSoft Peg Solit'#228'r offers you freely variable and extensib' +
35
        'le board files that '
36
 
37
        'provide you with the template for playing. In the next versions,' +
38
        ' a comfortable level '
39
 
40
        'editor is also planned that will make editing via the editor sup' +
41
        'erfluous. However, '
42
 
43
        'the boards already supplied correspond to the usual standard boa' +
44
        'rds.'
45
      ''
46
 
47
        'This variant of Peg Solitaire has different colored stones, whic' +
48
        'h are weighted '
49
 
50
        'differently in the number of points. A distant red stone will gi' +
51
        've you 30 points, a '
52
      'yellow 20 and a distant green 10.'
53
      ''
54
 
55
        'However, playing for points is not absolutely necessary. You can' +
56
        ' also play on '
57
 
58
        'time, on the fewest remaining stones or on the target field assi' +
59
        'gnment. Choose the '
60
      'destination you prefer.'
61
      ''
62
 
63
        'As a rule, diagonal moves are not allowed. The decision as to wh' +
64
        'ether the '
65
 
66
        'diagonal moves are still allowed is determined by the developer ' +
67
        'of the level file. It '
68
 
69
        'is possible that certain boards require diagonal pulls to be loo' +
70
        'sened correctly. '
71
 
72
        'However, this is mathematically very complex to prove. How have ' +
73
        'the standard '
74
 
75
        'boards delivered in two versions as comfort: with and without di' +
76
        'agonal pull.'
77
      ''
78
 
79
        'Some levels have target fields. These are characterized by a dee' +
80
        'per imprint on '
81
 
82
        'the field or in the preview by a black border. The Peg Solitaire' +
83
        ' is finished correctly, '
84
 
85
        'if there are stones on the target fields (color does not matter)' +
86
        ', no further moves are '
87
 
88
        'possible and there are no other stones on the board. You will re' +
89
        'ceive a special '
90
 
91
        'award in the high score lists. But as I said, you do not have to' +
92
        ' pursue this primary '
93
      'goal. You can also play for time or points instead.'
94
      ''
95
 
96
        'Further information about the game can be found on the internet ' +
97
        'under the '
98
      'keyword "Solitaire" or "Peg Solitaire".')
1 daniel-mar 99
    ReadOnly = True
100
    ScrollBars = ssVertical
101
    TabOrder = 1
102
  end
103
  object CloseBtn: TButton
104
    Left = 160
105
    Top = 240
106
    Width = 105
107
    Height = 25
108
    Cancel = True
109
    Caption = 'Close'
110
    Default = True
111
    TabOrder = 0
112
    OnClick = CloseBtnClick
113
  end
114
end