///
 /// \brief Gets the power level of a room
 ///
 /// \param [in] room The name of the room as a string
 /// \return Returns the power level of the room
 ///
 /// \details Will return -1 if the room is not found
 ///
 int _getRoom(string room)
 {
     return(rooms.getPower(room));
 }