Serialized Form


Package es.ucm.fdi.hysteria.console

Class es.ucm.fdi.hysteria.console.Parser extends java.lang.Object implements Serializable

serialVersionUID: 859179026178238459L

Serialized Fields

_reader

java.util.Scanner _reader
Scanner needed for reading from keyboard


_commandPrototypes

java.util.Vector<E> _commandPrototypes
Contains the prototypes of every command that the player can use during the game


_game

Game _game
A reference to the game that created the Interpreter


_config

GameConfig _config
Config


_engine

Engine _engine
Engine


Package es.ucm.fdi.hysteria.console.command

Class es.ucm.fdi.hysteria.console.command.CloseCommand extends Command implements Serializable

serialVersionUID: -2780211196846894508L

Serialized Fields

_dir

Game.Direction _dir
The movement direction


_withItem

boolean _withItem

_item

java.lang.String _item

Class es.ucm.fdi.hysteria.console.command.Command extends java.lang.Object implements Serializable

serialVersionUID: 8252326219273197580L

Serialized Fields

_game

Game _game
A reference to a game object.


_successful

boolean _successful
Was the command successful?


_parsed

boolean _parsed
Was the command parsed?


_executed

boolean _executed
Was the command executed?


_result

java.lang.String _result
What was the result?


_config

GameConfig _config

Class es.ucm.fdi.hysteria.console.command.ConnectCommand extends Command implements Serializable

serialVersionUID: 8776139511355765405L

Serialized Fields

_user

java.lang.String _user

_pass

java.lang.String _pass

_engine

Engine _engine

s

java.net.Socket s

in

java.io.ObjectInputStream in

out

java.io.ObjectOutputStream out

_lastMessage

Message _lastMessage

Class es.ucm.fdi.hysteria.console.command.DisconnectCommand extends Command implements Serializable

serialVersionUID: 8776139511355765405L

Serialized Fields

_user

java.lang.String _user

_pass

java.lang.String _pass

_engine

Engine _engine

Class es.ucm.fdi.hysteria.console.command.DropCommand extends Command implements Serializable

serialVersionUID: 7286849622343155712L

Serialized Fields

_itemName

java.lang.String _itemName
The name of the item to be dropped

Class es.ucm.fdi.hysteria.console.command.ExamineCommand extends Command implements Serializable

serialVersionUID: 499906777031872861L

Serialized Fields

_examineInventory

boolean _examineInventory
A flag that decides if examining the whole inventory or only an item


_itemName

java.lang.String _itemName
The name of the item to be examined

Class es.ucm.fdi.hysteria.console.command.GoCommand extends Command implements Serializable

serialVersionUID: 3059090789196801356L

Serialized Fields

_dir

Game.Direction _dir
The movement direction

Class es.ucm.fdi.hysteria.console.command.HelpCommand extends Command implements Serializable

serialVersionUID: 2735628223487184834L

Serialized Fields

_parser

Parser _parser
The parser in order to delegate it the task of creating the help message


_com

Command _com
The command whose help is going to be printed

Class es.ucm.fdi.hysteria.console.command.ListCommand extends Command implements Serializable

serialVersionUID: 4169716167186037518L

Serialized Fields

_engine

Engine _engine

Class es.ucm.fdi.hysteria.console.command.LoadCommand extends Command implements Serializable

serialVersionUID: -4808248200810313301L

Serialized Fields

_engine

Engine _engine

_path

java.lang.String _path

Class es.ucm.fdi.hysteria.console.command.LookCommand extends Command implements Serializable

serialVersionUID: 5391688127172559762L

Class es.ucm.fdi.hysteria.console.command.OpenCommand extends Command implements Serializable

serialVersionUID: 3296573242569398777L

Serialized Fields

_dir

Game.Direction _dir
The movement direction


_withItem

boolean _withItem

_item

java.lang.String _item

Class es.ucm.fdi.hysteria.console.command.PresentCommand extends Command implements Serializable

serialVersionUID: 7286849622343155712L

Serialized Fields

_itemName

java.lang.String _itemName
The name of the item to be dropped

Class es.ucm.fdi.hysteria.console.command.QuitCommand extends Command implements Serializable

serialVersionUID: -3197051055580592806L

Class es.ucm.fdi.hysteria.console.command.RedoCommand extends Command implements Serializable

serialVersionUID: 1990469288283646535L

Serialized Fields

_engine

Engine _engine

Class es.ucm.fdi.hysteria.console.command.SaveCommand extends Command implements Serializable

serialVersionUID: 8440339249917311889L

Serialized Fields

_engine

Engine _engine

_path

java.lang.String _path

Class es.ucm.fdi.hysteria.console.command.TakeCommand extends Command implements Serializable

serialVersionUID: -8383210277610050489L

Serialized Fields

_itemName

java.lang.String _itemName
The name of the item to be picked

Class es.ucm.fdi.hysteria.console.command.TalkCommand extends Command implements Serializable

serialVersionUID: -2780211196846894508L

Serialized Fields

_generic

boolean _generic
The movement direction


_isNumber

boolean _isNumber

_numberTopic

int _numberTopic

_stringTopic

java.lang.String _stringTopic

Class es.ucm.fdi.hysteria.console.command.UndoCommand extends Command implements Serializable

serialVersionUID: 4169716167186037518L

Serialized Fields

_engine

Engine _engine

Class es.ucm.fdi.hysteria.console.command.UseCommand extends Command implements Serializable

serialVersionUID: 3296573242569398777L

Serialized Fields

_withItem

boolean _withItem

_origin

java.lang.String _origin

_reactive

java.lang.String _reactive

Package es.ucm.fdi.hysteria.exception

Class es.ucm.fdi.hysteria.exception.InvalidGameDefinitionException extends java.lang.Exception implements Serializable

serialVersionUID: 1L

Class es.ucm.fdi.hysteria.exception.ItemAlreadyInRepositoryException extends java.lang.RuntimeException implements Serializable

serialVersionUID: 1L

Class es.ucm.fdi.hysteria.exception.ItemNotAppropiateForReactionException extends java.lang.RuntimeException implements Serializable

serialVersionUID: 1L

Class es.ucm.fdi.hysteria.exception.ItemNotInRepositoryException extends java.lang.RuntimeException implements Serializable

serialVersionUID: 1L

Class es.ucm.fdi.hysteria.exception.ItemNotUsableWithException extends java.lang.RuntimeException implements Serializable

serialVersionUID: 1L

Class es.ucm.fdi.hysteria.exception.NegativeAmountException extends java.lang.RuntimeException implements Serializable

serialVersionUID: 1L

Class es.ucm.fdi.hysteria.exception.NoCommandResultException extends java.lang.RuntimeException implements Serializable

serialVersionUID: 1L

Class es.ucm.fdi.hysteria.exception.NoConnectedLocationException extends java.lang.RuntimeException implements Serializable

serialVersionUID: 1L

Class es.ucm.fdi.hysteria.exception.NoExecutedCommandsException extends java.lang.RuntimeException implements Serializable

serialVersionUID: 1L

Class es.ucm.fdi.hysteria.exception.NoExitThresholdException extends java.lang.RuntimeException implements Serializable

serialVersionUID: 1L

Class es.ucm.fdi.hysteria.exception.NoGameEventsException extends java.lang.RuntimeException implements Serializable

serialVersionUID: 1L

Class es.ucm.fdi.hysteria.exception.NoImageException extends java.lang.RuntimeException implements Serializable

serialVersionUID: 1L

Class es.ucm.fdi.hysteria.exception.NoMusicException extends java.lang.RuntimeException implements Serializable

serialVersionUID: 1L

Class es.ucm.fdi.hysteria.exception.NoNextCommandException extends java.lang.RuntimeException implements Serializable

serialVersionUID: 1L

Class es.ucm.fdi.hysteria.exception.NoObstacleException extends java.lang.RuntimeException implements Serializable

serialVersionUID: 1L

Class es.ucm.fdi.hysteria.exception.ObstacleDoesntNeedKeyException extends java.lang.RuntimeException implements Serializable

serialVersionUID: 1L

Class es.ucm.fdi.hysteria.exception.ObstacleNeedsAKeyException extends java.lang.RuntimeException implements Serializable

serialVersionUID: 1L

Class es.ucm.fdi.hysteria.exception.SceneNotActiveException extends java.lang.RuntimeException implements Serializable

serialVersionUID: 1L

Class es.ucm.fdi.hysteria.exception.TopicNonExistantException extends java.lang.RuntimeException implements Serializable

serialVersionUID: 1L

Class es.ucm.fdi.hysteria.exception.UnexecutedCommandException extends java.lang.RuntimeException implements Serializable

serialVersionUID: 1L

Class es.ucm.fdi.hysteria.exception.UnexistantImageException extends java.lang.RuntimeException implements Serializable

serialVersionUID: 1L

Class es.ucm.fdi.hysteria.exception.UnparsedCommandException extends java.lang.RuntimeException implements Serializable

serialVersionUID: 1L

Class es.ucm.fdi.hysteria.exception.UnparsedGameDefinitionException extends java.lang.Exception implements Serializable

serialVersionUID: 1L


Package es.ucm.fdi.hysteria.game

Class es.ucm.fdi.hysteria.game.Game extends java.lang.Object implements Serializable

serialVersionUID: -1956367128617037472L

Serialized Fields

_currentLocation

Location _currentLocation
Room where the player stays


_events

java.util.Deque<E> _events
Events left to report


_playerInventory

ItemRepository _playerInventory
The player inventory


_author

java.lang.String _author
Author of the game


_title

java.lang.String _title
Title of the game


_desc

java.lang.String _desc
Description of the game


_gamePath

java.lang.String _gamePath
The path of the game directory (for other assets apart from the description file)


_finished

boolean _finished
Has the game finished?


_config

GameConfig _config

_visitedLocations

int _visitedLocations

_totalLocations

int _totalLocations

Class es.ucm.fdi.hysteria.game.Item extends java.lang.Object implements Serializable

serialVersionUID: 6597697493605457180L

Serialized Fields

_desc

java.lang.String _desc
Item description.


_name

java.lang.String _name
The item name. It identifies the item.


_value

int _value
The item value


_weight

float _weight
The item weight


_image

java.lang.String _image

_extinguishes

boolean _extinguishes

_morphsInto

java.util.LinkedHashSet<E> _morphsInto

_morphs

java.util.Hashtable<K,V> _morphs

_extinguishesWith

java.util.Hashtable<K,V> _extinguishesWith

_lightLevel

int _lightLevel

Class es.ucm.fdi.hysteria.game.ItemRepository extends java.lang.Object implements Serializable

serialVersionUID: -3799665355296697559L

Serialized Fields

_items

java.util.Set<E> _items
The collection that stores the items collected by the player

Class es.ucm.fdi.hysteria.game.Location extends java.lang.Object implements Serializable

serialVersionUID: 1582231182320869791L

Serialized Fields

_threshold

int _threshold
Exit threshold


_name

java.lang.String _name
Name of the room


_musicPath

java.lang.String _musicPath
Music of the room


_imagePath

java.lang.String _imagePath
Image of the room


_activeScene

Scene _activeScene
The active scene


_scenes

java.util.Vector<E> _scenes
Possible scenes on this location


_desc

java.lang.String _desc
Room description


_exit

java.lang.String _exit
Exit Message


_items

ItemRepository _items
The items contained in the room


_doors

java.util.EnumMap<K extends java.lang.Enum<K>,V> _doors
Adjacent rooms.


_obstacles

java.util.EnumMap<K extends java.lang.Enum<K>,V> _obstacles
Adjacent obstacles.


_visited

boolean _visited

_light

boolean _light

Class es.ucm.fdi.hysteria.game.Obstacle extends java.lang.Object implements Serializable

serialVersionUID: 5535714036250537341L

Serialized Fields

_enabled

boolean _enabled
Is the obstacle enabled?


_needKeys

boolean _needKeys
The obstacle needs keys to be interacted with?


_desc

java.lang.String _desc
Obstacle description


_keys

java.util.Set<E> _keys
Set of keys needed for interact with this obstacle


_related

java.util.LinkedHashSet<E> _related
Set of obstacles affected by this one


Package es.ucm.fdi.hysteria.game.scene

Class es.ucm.fdi.hysteria.game.scene.Reaction extends java.lang.Object implements Serializable

serialVersionUID: -5574504581093349456L

Serialized Fields

_message

java.lang.String _message
The message that has to be shown when asked for the item


_item

Item _item
The item to react to.


_watched

boolean _watched
Was the reaction already triggered?


_extinguish

boolean _extinguish
This reaction extinguishes the item?


_relatedEnable

java.util.Vector<E> _relatedEnable
The topics that have to be enabled or disabled when the reaction is triggered


_relatedDisable

java.util.Vector<E> _relatedDisable
The topics that have to be enabled or disabled when the reaction is triggered

Class es.ucm.fdi.hysteria.game.scene.ReactionManager extends java.lang.Object implements Serializable

serialVersionUID: 7483884148766022106L

Serialized Fields

_reactions

java.util.Vector<E> _reactions
The reactions


_default

java.lang.String _default
The message to be given when the item given has no reaction tied.

Class es.ucm.fdi.hysteria.game.scene.Scene extends java.lang.Object implements Serializable

serialVersionUID: -3707171021181113217L

Serialized Fields

_enabled

boolean _enabled
Is the scene enabled?


_intro

es.ucm.fdi.hysteria.game.scene.Intro _intro
The scene intro


_topics

es.ucm.fdi.hysteria.game.scene.TopicManager _topics
The topic manager


_reactions

ReactionManager _reactions
The reaction manager


_relatedToEnable

java.util.Vector<E> _relatedToEnable
The scenes related to this one


_relatedToDisable

java.util.Vector<E> _relatedToDisable
The scenes related to this one


_image

java.lang.String _image
Scene image

Class es.ucm.fdi.hysteria.game.scene.Topic extends java.lang.Object implements Serializable

serialVersionUID: -3886275083535488112L

Serialized Fields

_enabled

boolean _enabled

_watched

boolean _watched

_final

boolean _final

_title

java.lang.String _title

_text

java.lang.String _text

_relatedToEnable

java.util.Vector<E> _relatedToEnable

_relatedToDisable

java.util.Vector<E> _relatedToDisable

_items

ItemRepository _items

Package es.ucm.fdi.hysteria.gui

Class es.ucm.fdi.hysteria.gui.FileTable extends javax.swing.JFrame implements Serializable

serialVersionUID: -2800213830015748394L

Serialized Fields

_model

FileTableModel _model

_table

javax.swing.JTable _table

_lvl0

javax.swing.JPanel _lvl0

_tablePanel

javax.swing.JPanel _tablePanel

_lvl1Down

javax.swing.JPanel _lvl1Down

_lvl1Up

javax.swing.JScrollPane _lvl1Up

_filename

javax.swing.JTextField _filename

_buttonOk

javax.swing.JButton _buttonOk

_labelFile

javax.swing.JLabel _labelFile

_owner

OptionsFrame _owner

_controller

Controller _controller

_command

java.lang.String _command

Class es.ucm.fdi.hysteria.gui.FileTableModel extends javax.swing.table.DefaultTableModel implements Serializable

serialVersionUID: -343611684538694928L

Class es.ucm.fdi.hysteria.gui.JImagePanel extends javax.swing.JPanel implements Serializable

serialVersionUID: -7061596961533469028L

Serialized Fields

_background

java.awt.image.BufferedImage _background

_foreground

java.awt.image.BufferedImage _foreground

_backRatio

float _backRatio

_foreRatio

float _foreRatio

_backOffsetWidth

int _backOffsetWidth

_backOffsetHeight

int _backOffsetHeight

_foreOffsetWidth

int _foreOffsetWidth

_foreOffsetHeight

int _foreOffsetHeight

Class es.ucm.fdi.hysteria.gui.JImagePanelWithText extends JImagePanel implements Serializable

serialVersionUID: 2381931207458098617L

Serialized Fields

_pendingText

EventDispatcher _pendingText

_playerClick

boolean _playerClick

Class es.ucm.fdi.hysteria.gui.Loader extends javax.swing.JFrame implements Serializable

serialVersionUID: -2367295327447983157L

Serialized Fields

_fileGame

javax.swing.JTextField _fileGame

_fileConfig

javax.swing.JTextField _fileConfig

_labelGame

javax.swing.JLabel _labelGame

_labelConfig

javax.swing.JLabel _labelConfig

_Lvl0

javax.swing.JPanel _Lvl0

_Lvl1First

javax.swing.JPanel _Lvl1First

_Lvl1Second

javax.swing.JPanel _Lvl1Second

_Lvl1Fifth

javax.swing.JPanel _Lvl1Fifth

_browseConfig

javax.swing.JButton _browseConfig

_launchGame

javax.swing.JButton _launchGame

_finished

boolean _finished

Class es.ucm.fdi.hysteria.gui.NewGUI extends javax.swing.JFrame implements Serializable

serialVersionUID: -4623453349532892382L

Serialized Fields

_player

MP3Player _player

_controller

Controller _controller

_showLocationItems

boolean _showLocationItems

_showTextWindow

boolean _showTextWindow

_panelLvl0

javax.swing.JPanel _panelLvl0

_panelLvl1Left

javax.swing.JPanel _panelLvl1Left

_panelLvl1Center

javax.swing.JPanel _panelLvl1Center

_panelLvl1Right

javax.swing.JPanel _panelLvl1Right

_panelLvl2Up

javax.swing.JPanel _panelLvl2Up

_panelLvl2Down

javax.swing.JPanel _panelLvl2Down

_panelItemsLocation

javax.swing.JPanel _panelItemsLocation

_panelItemsInventory

javax.swing.JPanel _panelItemsInventory

_panelActionUp

javax.swing.JPanel _panelActionUp

_panelActionMed

javax.swing.JPanel _panelActionMed

_panelActionDown

javax.swing.JPanel _panelActionDown

_panelLvl1LeftBis

javax.swing.JScrollPane _panelLvl1LeftBis

_lastImagePanel

JImagePanelWithText _lastImagePanel

_labelName

javax.swing.JLabel _labelName

_textAreaDesc

javax.swing.JTextArea _textAreaDesc

_buttonGo

javax.swing.JButton _buttonGo

_buttonNorth

javax.swing.JButton _buttonNorth

_buttonNorthEast

javax.swing.JButton _buttonNorthEast

_buttonEast

javax.swing.JButton _buttonEast

_buttonSouthEast

javax.swing.JButton _buttonSouthEast

_buttonSouth

javax.swing.JButton _buttonSouth

_buttonSouthWest

javax.swing.JButton _buttonSouthWest

_buttonWest

javax.swing.JButton _buttonWest

_buttonNorthWest

javax.swing.JButton _buttonNorthWest

_buttonIn

javax.swing.JButton _buttonIn

_buttonOut

javax.swing.JButton _buttonOut

_buttonUp

javax.swing.JButton _buttonUp

_buttonDown

javax.swing.JButton _buttonDown

_buttonTake

javax.swing.JButton _buttonTake

_buttonDrop

javax.swing.JButton _buttonDrop

_buttonOpen

javax.swing.JButton _buttonOpen

_buttonClose

javax.swing.JButton _buttonClose

_buttonUndo

javax.swing.JButton _buttonUndo

_buttonRedo

javax.swing.JButton _buttonRedo

_buttonHelp

javax.swing.JButton _buttonHelp

_buttonOptions

javax.swing.JButton _buttonOptions

_buttonUse

javax.swing.JButton _buttonUse

_buttonUseWith

javax.swing.JButton _buttonUseWith

_buttonTalk

javax.swing.JButton _buttonTalk

_buttonShow

javax.swing.JButton _buttonShow

opt

OptionsFrame opt

_imageIconCache

Cache<V,T> _imageIconCache

_jImagePanelCache

Cache<V,T> _jImagePanelCache

_events

java.util.Deque<E> _events

_take

boolean _take

_drop

boolean _drop

_close

boolean _close

_open

boolean _open

_look

boolean _look

_help

boolean _help

_item

boolean _item

_use

boolean _use

_useWith

boolean _useWith

_talk

boolean _talk

_show

boolean _show

_dimensionLvl0

java.awt.Dimension _dimensionLvl0

_dimensionLvl1Left

java.awt.Dimension _dimensionLvl1Left

_dimensionLvl1LeftBis

java.awt.Dimension _dimensionLvl1LeftBis

_dimensionLvl1Center

java.awt.Dimension _dimensionLvl1Center

_dimensionLvl1Right

java.awt.Dimension _dimensionLvl1Right

_dimensionLvl2Up

java.awt.Dimension _dimensionLvl2Up

_dimensionLvl2Center

java.awt.Dimension _dimensionLvl2Center

_dimensionLvl2Down

java.awt.Dimension _dimensionLvl2Down

_dimensionLvl3Up

java.awt.Dimension _dimensionLvl3Up

_dimensionLvl3Down

java.awt.Dimension _dimensionLvl3Down

_dimensionTopicButton

java.awt.Dimension _dimensionTopicButton

_dimensionItems

java.awt.Dimension _dimensionItems

_dimensionDirections

java.awt.Dimension _dimensionDirections

_dimensionInOut

java.awt.Dimension _dimensionInOut

_dimensionCommands

java.awt.Dimension _dimensionCommands

_config

GameConfig _config

_lastItem

Item _lastItem

_itemToUseWith

Item _itemToUseWith

_lastDir

Game.Direction _lastDir

Class es.ucm.fdi.hysteria.gui.OldGUI extends javax.swing.JFrame implements Serializable

serialVersionUID: -4623453349532892382L

Serialized Fields

_player

MP3Player _player

_controller

Controller _controller

_showLocationItems

boolean _showLocationItems

_showTextWindow

boolean _showTextWindow

_panelLvl0

javax.swing.JPanel _panelLvl0

_panelLvl1Up

javax.swing.JPanel _panelLvl1Up

_panelLvl2Left

javax.swing.JPanel _panelLvl2Left

_panelLvl2Right

javax.swing.JPanel _panelLvl2Right

_panelLvl3Up

javax.swing.JPanel _panelLvl3Up

_panelLvl3Center

javax.swing.JPanel _panelLvl3Center

_panelItemsLocation

javax.swing.JPanel _panelItemsLocation

_panelItemsInventory

javax.swing.JPanel _panelItemsInventory

_panelActionUp

javax.swing.JPanel _panelActionUp

_panelActionDown

javax.swing.JPanel _panelActionDown

_panelLvl1Down

javax.swing.JScrollPane _panelLvl1Down

_panelLvl3Down

javax.swing.JScrollPane _panelLvl3Down

_labelName

javax.swing.JLabel _labelName

_textAreaDesc

javax.swing.JTextArea _textAreaDesc

_buttonGo

javax.swing.JButton _buttonGo

_buttonNorth

javax.swing.JButton _buttonNorth

_buttonNorthEast

javax.swing.JButton _buttonNorthEast

_buttonEast

javax.swing.JButton _buttonEast

_buttonSouthEast

javax.swing.JButton _buttonSouthEast

_buttonSouth

javax.swing.JButton _buttonSouth

_buttonSouthWest

javax.swing.JButton _buttonSouthWest

_buttonWest

javax.swing.JButton _buttonWest

_buttonNorthWest

javax.swing.JButton _buttonNorthWest

_buttonIn

javax.swing.JButton _buttonIn

_buttonOut

javax.swing.JButton _buttonOut

_buttonUp

javax.swing.JButton _buttonUp

_buttonDown

javax.swing.JButton _buttonDown

_buttonTake

javax.swing.JButton _buttonTake

_buttonDrop

javax.swing.JButton _buttonDrop

_buttonOpen

javax.swing.JButton _buttonOpen

_buttonClose

javax.swing.JButton _buttonClose

_buttonUndo

javax.swing.JButton _buttonUndo

_buttonRedo

javax.swing.JButton _buttonRedo

_buttonHelp

javax.swing.JButton _buttonHelp

_buttonOptions

javax.swing.JButton _buttonOptions

_buttonUse

javax.swing.JButton _buttonUse

_buttonUseWith

javax.swing.JButton _buttonUseWith

_buttonTalk

javax.swing.JButton _buttonTalk

_buttonShow

javax.swing.JButton _buttonShow

opt

OptionsFrame opt

_imageIconCache

Cache<V,T> _imageIconCache

_jImagePanelCache

Cache<V,T> _jImagePanelCache

_events

java.util.Deque<E> _events

_take

boolean _take

_drop

boolean _drop

_close

boolean _close

_open

boolean _open

_look

boolean _look

_help

boolean _help

_item

boolean _item

_use

boolean _use

_useWith

boolean _useWith

_talk

boolean _talk

_show

boolean _show

dimensionLvl0

java.awt.Dimension dimensionLvl0

dimensionLvl1Up

java.awt.Dimension dimensionLvl1Up

dimensionLvl1Down

java.awt.Dimension dimensionLvl1Down

dimensionLvl2Left

java.awt.Dimension dimensionLvl2Left

dimensionLvl2Right

java.awt.Dimension dimensionLvl2Right

dimensionLvl3Up

java.awt.Dimension dimensionLvl3Up

dimensionLvl3Center

java.awt.Dimension dimensionLvl3Center

dimensionLvl3Down

java.awt.Dimension dimensionLvl3Down

dimensionTopicButton

java.awt.Dimension dimensionTopicButton

dimensionItems

java.awt.Dimension dimensionItems

dimensionDirections

java.awt.Dimension dimensionDirections

_config

GameConfig _config

_lastItem

Item _lastItem

_itemToUseWith

Item _itemToUseWith

_lastDir

Game.Direction _lastDir

Class es.ucm.fdi.hysteria.gui.OptionsFrame extends javax.swing.JFrame implements Serializable

serialVersionUID: -8657059711042399337L

Serialized Fields

_buttonSave

javax.swing.JButton _buttonSave

_buttonLoad

javax.swing.JButton _buttonLoad

_buttonAbout

javax.swing.JButton _buttonAbout

_buttonQuit

javax.swing.JButton _buttonQuit

_buttonConnect

javax.swing.JButton _buttonConnect

_buttonDisconnect

javax.swing.JButton _buttonDisconnect

_panelLvl0

javax.swing.JPanel _panelLvl0

_config

GameConfig _config

_controller

Controller _controller

Package es.ucm.fdi.hysteria.network

Class es.ucm.fdi.hysteria.network.Message extends java.lang.Object implements Serializable

serialVersionUID: -6916515772397248711L

Serialized Fields

_result

java.lang.String _result

_message

java.lang.String _message