aboutsummaryrefslogtreecommitdiff
path: root/pl/local_episodes.pl
blob: 283ccb767693a6a2e54ee784ec6fb3dd9566eedd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
:- module(local_episodes, [local_episode//1,
			   episode_file/2,
			   open_episode/1]).

:- use_module(library(dcg/basics)).
:- use_module(atom_dcg).

local_episode -->
	local_episode(_).
local_episode(N) -->
	string(_), "Detective_Conan_-_", integer(N), string(_).
local_episode(N) -->
	string(_), "Detective_Conan_-_",
	integer(First), "-", integer(Last), string(_),
	{ Second is First + 1, between(Second, Last, N) }.

% Find episode on disk.

episode_file(N, F) :-
	expand_file_name('C:/Users/John/Nedladdningar/Detective Conan season 1 to season 22 + season 23(incomplete)/*/*.*',
			 F1),
	(   nonvar(N)
	->  include(atom_phrase(local_episode(N)), F1, [F|_])
	;   include(atom_phrase(local_episode), F1, F2),
	    member(F, F2),
	    atom_phrase(local_episode(N), F)
	).

open_episode(N) :-
	episode_file(N, F),
	win_shell(open, F).