Tv streaming comparision app
-
This is not a game but an app that will display offered channels on tv streaming platforms.
supported providers
- philo
- youtube tv
- watch tv and at&t now
- hulu
- sling (orange,blue)
- fubo and extras addon
Controls
- l or r will switch currently display provider
- Pressing y will toggle thru filters
- Pressing x goes to compare mode.
- zl and zr toggles 2nd provider in compare mode
compare mode
This will compare 1st provider to 2nd. Green channels are on provider 1 only. Red on 2 only. White are on both.
adding or removing channels to providers
channeldata() function is used to call the provider functions that control what channels are on given provider.
For example on philo the function is enterdata_philo(z).
The first line is
service[z].channel[chan.ae].on=1
chan.ae is just an int that refers to the element num of array where the a&e channel is stored.=1 means philo has a&e. You dont need to do =0 if provider doesnt have channel. They are 0 by default.
App is pretty large due to all the data involved
The app is shared and my fc is
SW-7640-2371-1534 -
Very interesting idea, certainly not what I expected! Seems like a really well functioning and useful database program! It must have taken you ages to manually enter all that data!
-
Yeah it took quite a while. Its over 1200 lines and like 90% of it is just data entry. The other 10% is the program itself. I am thinking of adding a price per channel function. Program already keeps track of num of channels and in the service structure there is a cost variable.
*update
Added the price per channel (shows in top corner)