about summary refs log tree commit diff stats
path: root/data/maps/four_rooms/rooms/Examples Room.txtpb
blob: ffbe74d94853c2039072df6683e01a8c54d856a9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
pre { line-height: 125%; }
td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
.highlight .hll { background-color: #ffffcc }
.highlight .c { color: #888888 } /* Comment */
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
.highlight .k { color: #008800; font-weight: bold } /* Keyword */
.highlight .ch { color: #888888 } /* Comment.Hashbang */
.highlight .cm { color: #888888 } /* Comment.Multiline */
.highlight .cp { color: #cc0000; font-weight: bold } /* Comment.Preproc */
.highlight .cpf { color: #888888 } /* Comment.PreprocFile */
.highlight .c1 { color: #888888 } /* Comment.Single */
.highlight .cs { color: #cc0000; font-weight: bold; background-color: #fff0f0 } /* Comment.Special */
.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
.highlight .ge { font-style: italic } /* Generic.Emph */
.highlight .ges { font-weight: bold; font-style: italic } /* Generic.EmphStrong */
.highli
name: "Examples Room"
display_name: "Examples Room"
panels {
  name: "SIZE"
  path: "Panels/Room 2 Examples/entry_1"
  clue: "size"
  answer: "tiny"
  symbols: "example"
}
panels {
  name: "EMOTION"
  path: "Panels/Room 2 Examples/entry_2"
  clue: "emotion"
  answer: "love"
  symbols: "example"
}
panels {
  name: "SIZE"
  path: "Panels/Room 2 Examples/entry_3"
  clue: "size"
  answer: "huge"
  symbols: "example"
}
panels {
  name: "EMOTION"
  path: "Panels/Room 2 Examples/entry_4"
  clue: "emotion"
  answer: "fear"
  symbols: "example"
}
panels {
  name: "SUPERLATIVE"
  path: "Panels/Room 2 Examples/entry_5"
  clue: "superlative"
  answer: "best"
  symbols: "example"
}
panels {
  name: "SONNET"
  path: "Panels/Room 2 Examples/entry_6"
  clue: "sonnet"
  answer: "poem"
  symbols: "example"
}
panels {
  name: "URN"
  path: "Panels/Room 2 Examples/entry_7"
  clue: "urn"
  answer: "grave"
  symbols: "example"
}
panels {
  name: "ART"
  path: "Panels/Room 2 Examples/entry_8"
  clue: "art"
  answer: "dance"
  symbols: "example"
}
ports {
  name: "DAEDALUS"
  path: "Components/Warps/worldport2"
  orientation: "north"
}
n class="w"> return *unchecked_image; } const wxImage& EyeIndicator::GetCheckedImage() { static wxImage* checked_image = new wxImage("assets/checked.png", wxBITMAP_TYPE_PNG); return *checked_image; } void EyeIndicator::OnPaint(wxPaintEvent& event) { if (GetSize() != rendered_.GetSize() || intended_checked_ != rendered_checked_) { Redraw(); } wxPaintDC dc(this); dc.DrawBitmap(rendered_, 0, 0); event.Skip(); } void EyeIndicator::Redraw() { rendered_ = wxBitmap((intended_checked_ ? GetCheckedImage() : GetUncheckedImage()) .Scale(GetSize().GetWidth(), GetSize().GetHeight(), wxIMAGE_QUALITY_NORMAL)); rendered_checked_ = intended_checked_; }