Moving Documentation

This commit is contained in:
Jeison Yehuda Amihud (Blender Dumbass) 2021-03-20 12:38:15 +00:00
parent 72778d1ccb
commit df22510e05
2 changed files with 169 additions and 1 deletions

168
wiki/docs/Analytics.md Normal file
View file

@ -0,0 +1,168 @@
# Analytics
In order to fight [procrastination](https://en.wikipedia.org/wiki/Procrastination) producers invented a tool. This tool is called "Deadline". And the movie is finished when a given date is due. No matter how incomplete it is. Sometimes it results in a lesser films. But most of the times it works to motivate people to work.
VCStudio as a tool that helps you make the **whole movie** should also give you motivation to work on the project. Rather than spend time doing other things. For this we have the Analytics system. Basically it's our day to day performance, compared to the amount should be done to meet the deadline. And stuff around it. Like checklists, schedules and history.
![](https://notabug.org/jyamihud/update_manager/raw/master/vcstudio/53.png)
### Content:
- [User Guide](#user-guide)
- [Source Code](#source-code)
# User Guide
The Analytics is accessed from the [Story Editor](../../wiki/docs/Story-Editor.md) on the top.
As you can see this window is devided into 3 parts. The left side, the bigger middle part and the right side. This kind of layot will be in multiple places in the VCStudio. Usually it's because on the right there are checklists.
**The middle**
In the middle usually are the more important parts. This middle part or analytics window, as you may see on the picture above, is also devided into 3 parts vertically.
**Progress bars**
The progress bars on the very top are there to give you general idea of where the project is in the given time. As you can see you have various progress bars there with icons beside them.
![](../../settings/themes/OldSchool/icons/analytics.png) It's the full calculation of all elements in the project. It contains all scenes *from the main chain*, all assets, all checklists. When the movie is finished. This bar will full.
![](../../settings/themes/OldSchool/icons/schedule.png) This bar is quite simple in theory. You have your start date and your deadline. And you have the current date. This progress bar represents the current date in relation to the start date and a deadline. Comparing this bar with the previous bar can give you an over all idea of whether you are behind or ahead of schedule.
![](../../settings/themes/OldSchool/icons/scene.png) That will fill up the more scenes *from the main chain* will be complited. It will completelly ignore the test scenes and such.
![](../../settings/themes/OldSchool/icons/chr.png) , ![](../../settings/themes/OldSchool/icons/veh.png) , ![](../../settings/themes/OldSchool/icons/loc.png) and ![](../../settings/themes/OldSchool/icons/obj.png) bars per each category of assets.
**Grpaph**
Just under the progress bars is the graph showing you the same information but over time. Now keep in mind that this example is using a project that was ones a Blender-Organizer project. Which recorded only the main progress bar. And since it was converted to VCStudio project. There is now a huge spike of all assets on the graph. Because they were concidered 0% up to the point of conversion. When suddenly they all became 100%.
The graph has 3 modes that you can access in the panel above it on the left. Let's go over them.
![](https://notabug.org/jyamihud/update_manager/raw/master/vcstudio/54.png)
By default you will have the ![](../../settings/themes/OldSchool/icons/pulse.png) **Pulse** mode. Which going to give you spikes based on overall progress done in a given time on the graph. Think about this one as sound waveform. If it's flat, nothing was done. If it spikes up. Progress was done. If it spikes down, progress was lost.
![](https://notabug.org/jyamihud/update_manager/raw/master/vcstudio/56.png)
The very left mode is the ![](../../settings/themes/OldSchool/icons/linear.png) **Linear** mode. The true values per time. You can see the grey line. It represends the expected percentage over time. Going steady from 0% to 100%. And the graph struggles to addapt to this line.
![](https://notabug.org/jyamihud/update_manager/raw/master/vcstudio/55.png)
And the middle mode the ![](../../settings/themes/OldSchool/icons/analytics.png) **Normalized** mode. Is if you flatten the time line. Anything behind schedule is below the line and anything ahead of the schedule is above the line.
**Calendar**
And in the bottom you have a calendar to select days to see various history and schedules for that particular date. And it's also used to schedule tasks.
**On the right**
On the right side you can see the checklist.
![](https://notabug.org/jyamihud/update_manager/raw/master/vcstudio/13.png)
Let's look at a checklist real quick. *You can find them all over the program. The image is from Assets for example.*
Checklists are quite simple to understand. It's your to do list. But insdead of being just a list. You can make tasks with subtaks in them. And so you can have a more organized to do list. You can move them arround, rename them, delete them, add them.
And one very cool feature is that you can schedule them. And you do this by dragging the task into the calendar of the analytics window.
Now you are probably asking me. But what if I'm in the asset or the script writer? There is no calendar. Well if you going to drag a task toward the center, it will give you a calendar. So don't be afraid to schedule things.
**On the left**
On the left you have 2 types of data you can access.
![](https://notabug.org/jyamihud/update_manager/raw/master/vcstudio/57.png)
![](../../settings/themes/OldSchool/icons/schedule.png) **Schedules**
These are all the scheduled tasks. By default it will give you only your tasks. You can click on the little ![](../../settings/themes/OldSchool/icons/multiuser.png) icon to see all tasks.
If your date is today. Then you also will see all the tasks from all days. ( the finished ones are hidden by default ). You can see the grey task, reddish taks and the purple task.
**Grey** task means that the task is for today.
**Red** task means that you behind schedule on this one.
**Purple** task is any task that is for any future day.
There is also **Green** task that are all the finished tasks. And a light **Blue** task which is for anyday. You can make one by setting any task to `1997/07/30`.
Dragging the tasks into the calendar will re-schedule them to a different day.
![](../../settings/themes/OldSchool/icons/history.png) **History**
![](https://notabug.org/jyamihud/update_manager/raw/master/vcstudio/58.png)
The history is a list of things done. Per date. That were recorded to be done on a given day. Also it's broken up into usernames. So you can see who done what when. Precicelly to the second.
Now will be the most interesting part. But the one that will fry your brain a little. The source code. Please read. There is nothing wrong with reading the source code.
# Source Code
The best documentation is to read the code of the software directly. For the analytics I recommend:
- [studio/analytics.py](../../studio/analytics.py) Reads the analytics. Calculates the percentages. Records the data for th graph.
- [studio/story.py](../../studio/story.py) Reads the story and calculates the analytics for the scenes.
- [studio/schedule.py](../../studio/schedule.py) Handles all the scheduling. Parses, Filters and renders the schedules.
- [studio/history.py](../../studio/history.py) Handles all the history. Records history, renders the history.
- [studio/checklist.py](../../studio/checklist.py) Handles the checklists. Reads, writes calculates and renders the checklists.
- [studio/studio_analyticsLayer.py](../../studio/studio_analyticsLayer.py) Render the UI of the analitycs. Records schedules.
**How are analytics calculated?**
Almost every single script above appart from maybe history is somehow involved in calculating the analytics. The main script [studio/analytics.py](../../studio/analytics.py) has 2 functions to calculate analytics. One for the legacy Blender-Organizer projects. And one for the new VCStudio projects.
The legacy was a bit harder because everything was broken up to peaces and using weird text data files that all need to be parsed in their own way. For the new one, most of the stuff is in `/set/analytics.json`
Now if you only read the `/set/analytics.json` file alone. It will not do any calculation. There wont be any change. So here is how we do it.
We have 6 items we want to know the percentage of.
- Main checklist.
- Story.
- Characters
- Vehicles
- Locations
- And other assets.
**Main checklist** is handled by the [studio/checklist.py](../../studio/checklist.py). It reads the `/set/project.progress` file. Sees what tasks are checked. And calculates the percentage for us.
**Story** is handled by the [studio/story.py](../../studio/story.py). It reads the script. Either the legacy `/pln/main.bos` or the new `/pln/story.vcss` and gets the data of all the scenes and all of the shots. Then it looks of whether a given shot has a checklists. If yes using [studio/checklist.py](../../studio/checklist.py) it gets a percentage of that shot. If not it looks at whether there are any files in the folders `storyboard`, `opengl`, `test_rnd` or `rendered`. And gives an aproximation based on the files.
When it got this data it can now calculate the main percentage of the whole story. But first it looks at the `arrows` ( connections ) and gets a list of scenes that are in the *main chain*. ( Connected to the Start and End nodes. ) The final story persentage is the average of all the scenes in the *main chain*.
**Assets** are calculated some what similarly to story. But instead of having a huge file with a list of assets. It just look into the `/dev/` folder and sees what folders exists in there. The asset is finished automatically if a corrisponding named blend file exists in the `/ast/` folder. If not it will look into the checklist of each asset.
Combining all of these percentages is not an easy task. There are hidden values ( that I will make a setting for in the future ) that give each category a factor. By default Story has a factor of 4. While each asset category only a factor of 1. Meaning that 1 story worth the same as all 4 categories of assets.
Then combined percentage is averaged with the main checklist. And we get the main percentage.
**How checklists can do tasks with in tasks?**
Actually my implementation is kind of not the smartest way of doing it. I'm doing real recursion but in python. Which is a bit of a problem.
The file is structured more like a python script. But I'm transforming it into a huge nested dictionary. To do that I'm running a bunch of functions with in themselves. Now if you actually try to do this in python. You will have a recursion error. Because python does not allow above like 1000 level of nesting like this.
But, and this could be my mistake, I don't see a need in 1000 levels of subtasks for any application. There are maybe 20 that fit on the screen there. But technically the checklist is limited to this python's limitation.
# Help The Documentation
The documentation files are not perfect. And need maintenance.
*If you are reading it from the VCStudio build in Documentation:*
- Press ![](../../settings/themes/OldSchool/icons/edit.png) to edit locally.
- Press ![](../../settings/themes/OldSchool/icons/notabug.png) to commit in our NotABug repository.
*(C) J.Y.Amihud 2021. Under GPL v3 or later.*

View file

@ -15,7 +15,7 @@ Story Editor is the Note Editor for story organization. It's a 2D world of your
I would love to start explaining the large middle part of it. But you would get lost on your project since it's probably empty for you. So instead I gonna go over the various buttons around the main view. So you could start building your story. And then as it goes. I gonna explain the reasons for each thing. And how to use them.
In the top you can see the Analytics progress bar. Starting with ![](../../settings/themes/OldSchool/icons/analytics.png) icon. This is a button that will give you analytics about the project. More about this in the Analytics page. Then you have the ![](../../settings/themes/OldSchool/icons/schedule.png) icon. Followed by the currently scheduled task. It will get you to an asset or a scene in which the task should be done.
In the top you can see the Analytics progress bar. Starting with ![](../../settings/themes/OldSchool/icons/analytics.png) icon. This is a button that will give you [analytics](../../wiki/docs/Analytics.md) about the project. More about this in the Analytics page. Then you have the ![](../../settings/themes/OldSchool/icons/schedule.png) icon. Followed by the currently scheduled task. It will get you to an asset or a scene in which the task should be done.
For those of you who want to use VCStudio without building a story. But just to organize assets. In he right side you can see the following 4 icons.