A Dalamud plugin for Final Fantasy XIV that tracks crafting recipes, gathering nodes, and fishing holes across all your characters.
- Recipe Tracking: Monitors all crafting recipes learned via memory reading from your character's recipe book
- Progress Display: Visual progress bars, completion percentages, and collection statistics for recipes
- Multi-Character: Automatically tracks collections per character
- Export/Import: JSON-based backup and restore for all collection data
- Database Reliability: 3-tier fallback strategy (file → in-memory → degraded mode)
- Performance: Optimized memory reading with safe, bounded access patterns
- Gathering Tracking: Event listeners and database ready, game event detection not yet implemented
- Fishing Tracking: Event listeners and database ready, game event detection not yet implemented
Note: Gathering and Fishing require FFXIVClientStructs APIs that are currently stub-only. Infrastructure is built and ready; detection logic requires additional research into Dalamud's game state APIs.
- Install XIVLauncher
- Launch FFXIV through XIVLauncher
- Type
/xlpluginsin-game to open Plugin Installer - Search for "Akadaemia Anyder" and install
- Type
/akadaemiain-game to open the tracker
For development, see DEVELOPMENT.md.
/akadaemia- Toggle main tracker window/akadaemia-config- Open settings and advanced options
-
Main Window
- Tabs for Recipes, Gathering, and Fishing collections
- Real-time progress indicators
- Completion statistics
- Character selector
-
Collection Management
- Click "Scan Collections" to update your current progress
- View detailed breakdown by category
- Export collections to JSON file
- Import previously exported collections
-
Settings
- Database health status
- Import/export options
- Character management
- Display preferences
The plugin uses a sophisticated architecture designed for reliability and performance:
- Hybrid Tracking: Memory reading for recipes (one-time load), event listening for gathering/fishing (real-time)
- 3-Tier Database: Automatic fallback from file-based SQLite → in-memory fallback → degraded mode on corruption
- Repository Pattern: Clean data access layer with retry logic and error handling
- SafeMemoryReader: Bounded, exception-safe memory access with automatic fallback
- ImGui UI: Native FFXIV overlay interface that integrates seamlessly with game UI
For detailed architecture documentation, see ARCHITECTURE.md.
To contribute or build locally, see DEVELOPMENT.md.
- FINAL FANTASY XIV (any region, any expansion level)
- Dalamud plugin system enabled via XIVLauncher
- Windows 10 or later
MIT License - see LICENSE file
- Ensure XIVLauncher is configured correctly
- Run
/xlpluginsto check Dalamud status - Check plugin compatibility with your Dalamud version
- Plugin automatically recovers from database corruption
- Check game logs in
%APPDATA%\XIVLauncher\log\for detailed error messages - Database is stored in
%APPDATA%\XIVLauncher\pluginConfigs\AkadaemiaAnyder\akadaemia.db
- Use export feature from Settings to backup current data
- Re-scan collections with "Scan Collections" button
- Import previously exported JSON files if needed
wgdevelopment
Contributions are welcome! See CONTRIBUTING.md for guidelines.