Mercurial > minori
view src/track/media.cc @ 118:39521c47c7a3
*: another huge megacommit, SORRY
The torrents page works a lot better now
Added the edit option to the anime list right click menu
Vectorized currently playing files
Available player and extensions are now loaded at runtime
from files in (dotpath)/players.json and (dotpath)/extensions.json
These paths are not permanent and will likely be moved to
(dotpath)/recognition
...
...
...
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Tue, 07 Nov 2023 23:40:54 -0500 |
parents | ab191e28e69d |
children | 0a458cb26ff4 |
line wrap: on
line source
#include "track/media.h" #include "track/constants.h" #include "animia.h" #include "anitomy/anitomy.h" #include "core/filesystem.h" #include "core/strings.h" #include "core/session.h" #include <string> #include <unordered_map> #include <vector> #include <iostream> namespace Track { namespace Media { std::vector<Filesystem::Path> GetCurrentlyPlayingFiles() { /* getting all open files */ std::vector<Filesystem::Path> ret; std::vector<int> pids = Animia::get_all_pids(); for (int pid : pids) { for (const Types::MediaPlayer& player : session.recognition.players) { if (!player.GetEnabled() || Animia::get_process_name(pid) != player.GetExecutable()) continue; for (const std::string& file : Animia::filter_system_files(Animia::get_open_files(pid))) { const Filesystem::Path path(file); for (const Types::MediaExtension& ext : session.recognition.extensions) if (path.Extension() == ext.GetExtension()) ret.push_back(path); } } } return ret; } Filesystem::Path GetCurrentPlaying() { /* getting all open files */ std::vector<Filesystem::Path> paths = GetCurrentlyPlayingFiles(); if (paths.size()) return paths.at(0); return Filesystem::Path(); } std::unordered_map<std::string, std::string> GetMapFromElements(const anitomy::Elements& elements) { /* there are way more than this in anitomy, but we only need basic information I also just prefer using maps than using the ".get()" stuff which is why I'm doing this */ std::unordered_map<std::string, std::string> ret; ret["title"] = Strings::ToUtf8String(elements.get(anitomy::kElementAnimeTitle)); ret["filename"] = Strings::ToUtf8String(elements.get(anitomy::kElementFileName)); ret["language"] = Strings::ToUtf8String(elements.get(anitomy::kElementLanguage)); ret["group"] = Strings::ToUtf8String(elements.get(anitomy::kElementReleaseGroup)); ret["episode"] = Strings::ToUtf8String(elements.get(anitomy::kElementEpisodeNumber)); ret["resolution"] = Strings::ToUtf8String(elements.get(anitomy::kElementVideoResolution)); return ret; } std::unordered_map<std::string, std::string> GetFileElements(std::string basename) { anitomy::Anitomy anitomy; anitomy.Parse(Strings::ToWstring(basename)); return GetMapFromElements(anitomy.elements()); } std::unordered_map<std::string, std::string> GetFileElements(Filesystem::Path path) { anitomy::Anitomy anitomy; anitomy.Parse(Strings::ToWstring(path.Basename())); return GetMapFromElements(anitomy.elements()); } } // namespace Media } // namespace Track