This file is indexed.

/usr/lib/Wt/examples/hangman/HangmanWidget.C is in witty-examples 3.1.10-1ubuntu2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
/*
 * Copyright (C) 2005 Wim Dumon
 *
 * See the LICENSE file for terms of use.
 */

#include "HangmanWidget.h"

#include <Wt/WBreak>
#include <Wt/WCssDecorationStyle>
#include <Wt/WTable>
#include <Wt/WText>
#include <Wt/WTableCell>
#include <Wt/WLineEdit>
#include <Wt/WPushButton>
#include <Wt/WImage>
#include <Wt/WSignalMapper>
#include <boost/lexical_cast.hpp>

#include "Dictionary.h"
#include "HangmanDb.h"

HangmanWidget::HangmanWidget(std::wstring user, Dictionary dict,
			     WContainerWidget *parent):
   WContainerWidget(parent),
   MaxGuesses(9),
   User(user),
   Dict(dict)
{
   setContentAlignment(AlignCenter);

   Title = new WText("Guess the word!", this);
   Title->decorationStyle().font().setSize(WFont::XLarge);

   WordContainer = new WContainerWidget(this);
   WordContainer->setMargin(20, Top | Bottom);
   WordContainer->setContentAlignment(AlignCenter);
   WCssDecorationStyle& style = WordContainer->decorationStyle();
   style.setBorder(WBorder(WBorder::Solid));
   style.font().setFamily(WFont::Monospace, "courier");
   style.font().setSize(WFont::XXLarge);

   StatusText = new WText(this);
   new WBreak(this);
   createHangmanImages(this);
   createAlphabet(this);
   new WBreak(this);
   NewGameButton = new WPushButton("New Game", this);
   NewGameButton->clicked().connect(this, &HangmanWidget::newGame);

   // prepare for first game
   newGame();
}

void HangmanWidget::createHangmanImages(WContainerWidget *parent)
{
   for(unsigned int i = 0; i <= MaxGuesses; ++i) {
      std::string fname = "icons/hangman";
      fname += boost::lexical_cast<std::string>(i) + ".png";
      WImage *theImage = new WImage(fname, parent);
      HangmanImages.push_back(theImage);

      // Although not necessary, we can avoid flicker (on konqueror)
      // by presetting the image size.
      theImage->resize(256, 256);
   }

   HurrayImage = new WImage("icons/hangmanhurray.png", parent);
   resetImages(); // Hide all images
}

void HangmanWidget::createAlphabet(WContainerWidget *parent)
{
   LetterButtonLayout = new WTable(parent);

   // The default width of a table is 100%...
   LetterButtonLayout->resize(13*30, WLength::Auto);

   WSignalMapper<WPushButton *> *mapper
     = new WSignalMapper<WPushButton *>(this);

   for(unsigned int i = 0; i < 26; ++i) {
      std::wstring c(1, 'A' + i);
      WPushButton *character =
	 new WPushButton(c, LetterButtonLayout->elementAt(i / 13, i % 13));
      LetterButtons.push_back(character);
      character->resize(30, WLength::Auto);
      mapper->mapConnect(character->clicked(), character);
   }

   mapper->mapped().connect(this, &HangmanWidget::processButton);
}

void HangmanWidget::newGame()
{
   Word = RandomWord(Dict);
   Title->setText(L"Guess the word, " + User + L"!");
   NewGameButton->hide(); // don't let the player chicken out

   // Bring widget to initial state
   resetImages();
   resetButtons();
   BadGuesses = DisplayedLetters = 0;
   HangmanImages[0]->show();

   // Prepare the widgets for the new word
   WordContainer->clear();
   WordLetters.clear();
   for(unsigned int i = 0; i < Word.size(); ++i) {
      WText *c = new WText("-", WordContainer);
      WordLetters.push_back(c);
   }

   // resize appropriately so that the border nooks nice.
   WordContainer->resize(WLength(Word.size() * 1.5, WLength::FontEx),
			 WLength::Auto);

   StatusText->setText("");
}

void HangmanWidget::processButton(WPushButton *button)
{
   if (!button->isEnabled())
     return;

   wchar_t c = button->text().value().c_str()[0];
   if(std::find(Word.begin(), Word.end(), c) != Word.end())
      registerCorrectGuess(c);
   else
      registerBadGuess();
   button->disable();
}

void HangmanWidget::registerBadGuess()
{
   if(BadGuesses < MaxGuesses) {
      HangmanImages[BadGuesses]->hide();
      BadGuesses++;
      HangmanImages[BadGuesses]->show();
      if(BadGuesses == MaxGuesses) {
	 StatusText->setText(L"You hang... <br />"
			     L"The correct answer was: " + Word);
	 LetterButtonLayout->hide();
	 NewGameButton->show();
	 HangmanDb::addToScore(User, -10);
      }
   }
}

void HangmanWidget::registerCorrectGuess(wchar_t c)
{
   for(unsigned int i = 0; i < Word.size(); ++i) {
      if(Word[i] == c) {
	 DisplayedLetters++;
	 WordLetters[i]->setText(std::wstring(1, c));
      }
   }
   if(DisplayedLetters == Word.size()) {
      StatusText->setText("You win!");
      HangmanImages[BadGuesses]->hide();
      HurrayImage->show();
      LetterButtonLayout->hide();
      NewGameButton->show();
      HangmanDb::addToScore(User, 20 - BadGuesses);
   }
}

void HangmanWidget::resetImages()
{
    HurrayImage->hide();
    for(unsigned int i = 0; i < HangmanImages.size(); ++i)
       HangmanImages[i]->hide();
}

void HangmanWidget::resetButtons()
{
   for(unsigned int i = 0; i < LetterButtons.size(); ++i) {
      LetterButtons[i]->enable();
   }
   LetterButtonLayout->show();
}