Subversion Repositories jumper

Rev

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