Netrunner Card Finder is a compact tool created in C++ using the Qt framework that utilizes information from the card information API provided by NetrunnerDB to filter Netrunner cards by name, side, faction, and/or type. Once the desired filters have been applied, a list of matching cards is displayed, any of the items of which may be selected to display the corresponding images related to that card's possible various printings.
Learn more about Netrunner @ BGG or Null Signal Games. Android: Netrunner is a trademark of Fantasy Flight Games (FFG) and is based on the original Netrunner card game created by Richard Garfield and produced by Wizards of the Coast (WotC).
- Availability of cards ranging from those published officially by FFG beginning in 2012 up to the compatible cards published to this day (Spring 2024) by Null Signal Games.
- Possibility to operate completely disconnected from the internet.
- Fast card search capability made possible by
simdjson
. - Dynamic search bar reacts to user input on the go.
- Drop-down boxes available to further filter cards by side, faction, or type.
- Clear images displayed tidily in a grid.
- Simple compilation and launch steps.
GNU Make
CMake 3.5+
Qt5/Qt6
simdjson
(included)- Reasonably up-to-date version of
GCC
- compiled and tested with v13.2.1 (release 20230801)
Confirmed supported only under GNU/Linux
OS at this time - may work elsewhere.
If using image_grabber.py
to download cards.json
data or card images:
Python 3.11+
withjson
,pathlib
,socket
, andurllib
libraries
Navigate to repository root directory and run the following commands:
cmake -S ./ -B nrcf
make -C nrcf
Navigate to newly created build directory and run executable by entering the following commands:
cd nrcf
./netrunner_card_finder
OR locate the executable file within preferred file explorer at location ./nrcf
(./
being the root of the repository) and launch.
If necessary, image_grabber.py
may be used to obtain or update cards.json
data and/or card images:
chmod -v 744 image_grabber.py
./image_grabber.py > image_dl_log.txt 2>&1
- If updating
cards.json
, be sure to rename, backup/move, or delete the existingcards.json
file.
NOTE: Screenshots taken on KDE Plasma with 'krita blender' color theme - may appear differently based on local software.
- Reduce any remaining redundancies.
- Improve card image grid layout to better support the possible release of new printings of already existing cards.
- Complete local API storage for more efficient and rapid search operation.
- Add data and statistics information for each card inline, as a tooltip, or in a new window, etc.
- Add more error handling.
- Add regex for handling search criteria.
- Complete search reset is slower than ideal (see comments in source).