Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
95 changes: 95 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
# Scrabble Game - HTML5 Interactive Multiplayer

An interactive multiplayer HTML5 implementation of the classic Scrabble word game.

## Project Structure

```
scrabble-game/
├── index.html # Main game page
├── css/
│ └── styles.css # Game styling and responsive design
├── js/
│ └── game.js # Core game logic and initialization
└── README.md # Project documentation
```

## Features (Planned)

- Interactive game board
- Multiplayer support (up to 4 players)
- Word validation
- Score calculation
- Responsive design for mobile and desktop
- Turn-based gameplay
- Tile management system

## Getting Started

1. Open `index.html` in a modern web browser
2. The game will initialize automatically
3. Check the browser console for initialization confirmation

## Development Status

### ✅ Completed
- Basic HTML5 project structure
- Responsive CSS styling
- JavaScript game object framework
- Mobile-friendly design

### 🚧 In Progress
- Game board rendering
- Tile system implementation
- Player management

### 📋 Planned
- Multiplayer functionality
- Dictionary integration
- Score tracking
- Game state persistence
- Sound effects
- Animations

## Technical Stack

- **HTML5** - Semantic markup and game structure
- **CSS3** - Styling with responsive design
- **Vanilla JavaScript (ES6)** - Game logic without external dependencies

## Browser Compatibility

- Chrome (latest)
- Firefox (latest)
- Safari (latest)
- Edge (latest)
- Mobile browsers (iOS Safari, Chrome Mobile)

## Game Configuration

The game configuration can be modified in `js/game.js`:

```javascript
config: {
boardSize: 15,
maxPlayers: 4,
tilesPerPlayer: 7
}
```

## Future Enhancements

- Online multiplayer via WebSockets
- AI opponent
- Tournament mode
- Statistics tracking
- Custom word lists
- Theme customization

## Contributing

This project is part of the TEST-104 initiative to build an interactive multiplayer HTML5 game of Scrabble.

## License

This project is for educational purposes as part of the development workflow testing.
Loading