This project is a simple data exploration tool for movie data. It loads data from three TSV files and provides an interactive interface for users to search for movies and actors/actresses, displaying related cast and movie details.
-
movie.titles.tsv: Contains movie information. The program reads the following fields:
tconst
(title ID)primaryTitle
startYear
genres
-
movie.names.tsv: Contains actor/actress information. The program uses:
nconst
(name ID)primaryName
birthYear
deathYear
primaryProfession
-
movie.principals.tsv: Links movies with their cast. Key fields include:
tconst
(title ID)nconst
(name ID)- Character played
-
Struct Definitions:
TitleRecord
: For storing movie data.NameRecord
: For storing actor/actress data.PrincipalRecord
: For linking movies and cast members.
-
Data Loading:
Functions are implemented to read each file (ignoring the header) and store records in vectors.
-
Movie Search:
- Input: Search phrases (in lower case, separated by
+
). - Output: A list of movies matching all search phrases (showing index, primaryTitle, startYear).
- Further action: Selecting a movie displays its cast (primaryName and character).
- Input: Search phrases (in lower case, separated by
-
Actor/Actress Search:
- Input: Search phrases (lower case, separated by
+
). - Output: A list of actors/actresses matching the search criteria.
- Further action: Selecting an actor/actress displays all movies they appeared in (primaryTitle, startYear, character).
- Input: Search phrases (lower case, separated by
Note: The search functionality respects the order of records in the original data file, ensuring consistent and unique results. Also, proper error checking for cin.fail()
is included to work with the autograder.
- Run the main program.
- Choose between movie search or actor/actress search.
- Enter search phrases as prompted (e.g.,
action+thriller
). - Follow the prompts to view detailed results.
Happy coding!