Docs updates
This commit is contained in:
62
docs/source/design/milestones.rst
Normal file
62
docs/source/design/milestones.rst
Normal file
@@ -0,0 +1,62 @@
|
|||||||
|
############
|
||||||
|
Milestones
|
||||||
|
############
|
||||||
|
|
||||||
|
|
||||||
|
Minimum Viable Product
|
||||||
|
======================
|
||||||
|
|
||||||
|
Get existing project migrated to asset manager as soon as possible.
|
||||||
|
|
||||||
|
- No Client-side-SVN.
|
||||||
|
- Checkout/Commit assets.
|
||||||
|
- Basic UI.
|
||||||
|
- ZIP file access (as an example, users wouldn't have to notice)
|
||||||
|
- Testing (basic testing framework)
|
||||||
|
|
||||||
|
|
||||||
|
Performance
|
||||||
|
===========
|
||||||
|
|
||||||
|
- Parallel downloads
|
||||||
|
- Cache (avoid re-downloading files)
|
||||||
|
|
||||||
|
|
||||||
|
Interface
|
||||||
|
=========
|
||||||
|
|
||||||
|
- BAM project definition.
|
||||||
|
- Blender Addon (UI for performing basic actions)
|
||||||
|
- *Maybe* extend GUI client.
|
||||||
|
- Web UI
|
||||||
|
- Download Zipfiles
|
||||||
|
|
||||||
|
|
||||||
|
Scaling/Project
|
||||||
|
===============
|
||||||
|
|
||||||
|
- Consistency checks (correct library linking)
|
||||||
|
|
||||||
|
|
||||||
|
Basic Automated Tasks
|
||||||
|
=====================
|
||||||
|
|
||||||
|
- Generated Previews (basic automated tasks hooked up to asset manager)
|
||||||
|
- Baking (physics)
|
||||||
|
- Web UI (create/view/manage jobs)
|
||||||
|
|
||||||
|
|
||||||
|
Story Tool
|
||||||
|
==========
|
||||||
|
|
||||||
|
- Establish connection between sequencer and 'shot' assets *(abstract concept)*
|
||||||
|
- Integrate into Addon
|
||||||
|
- Connect automated tasks on edit updates, (sync sequence with short assets)
|
||||||
|
- Expose the edit outside of Blender *(web based UI, reviews, comment, feedback, tasks...)*
|
||||||
|
|
||||||
|
|
||||||
|
Project Management
|
||||||
|
==================
|
||||||
|
|
||||||
|
- Web UI
|
||||||
|
- Connect basic communication tools to assets, commits.
|
@@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
%%%%%%%%%%%
|
##########
|
||||||
Pipeline
|
Pipeline
|
||||||
%%%%%%%%%%%
|
##########
|
||||||
|
|
||||||
**The Story Tool**
|
**The Story Tool**
|
||||||
|
|
||||||
@@ -27,9 +27,9 @@
|
|||||||
- Design to **allow** for swappable modular components, even if we end up sticking with single technologies.
|
- Design to **allow** for swappable modular components, even if we end up sticking with single technologies.
|
||||||
|
|
||||||
|
|
||||||
##################
|
|
||||||
Asset Managment
|
Asset Managment
|
||||||
##################
|
===============
|
||||||
|
|
||||||
- Assets <-> Users
|
- Assets <-> Users
|
||||||
- Revisions
|
- Revisions
|
||||||
@@ -37,30 +37,29 @@
|
|||||||
|
|
||||||
|
|
||||||
Architecture Overview
|
Architecture Overview
|
||||||
=====================
|
---------------------
|
||||||
|
|
||||||
Server
|
Server
|
||||||
------
|
^^^^^^
|
||||||
|
|
||||||
- File asset
|
- File asset
|
||||||
- Tools (blend file packer, evaluate sequencer, visualize deps, automated tasks ...)
|
- Tools (blend file packer, evaluate sequencer, visualize deps, automated tasks ...)
|
||||||
- Public API (web service), *communicates with client.*
|
- Public API (web service), *communicates with client.*
|
||||||
|
|
||||||
Client
|
Client
|
||||||
------
|
^^^^^^
|
||||||
|
|
||||||
- Interface GUI/CLI (Blender/Web-UI also)
|
- Interface GUI/CLI (Blender/Web-UI also)
|
||||||
- Tools (manage files on the client, cache.)
|
- Tools (manage files on the client, cache.)
|
||||||
- Local files (models, images)
|
- Local files (models, images)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
User Stories
|
User Stories
|
||||||
============
|
------------
|
||||||
|
|
||||||
|
|
||||||
Layout Artist
|
Layout Artist
|
||||||
-------------
|
^^^^^^^^^^^^^
|
||||||
|
|
||||||
Mathieu has to update the camera motion in an existing shot in layout stage.
|
Mathieu has to update the camera motion in an existing shot in layout stage.
|
||||||
|
|
||||||
@@ -81,7 +80,7 @@ He finally receives confirmation that the commit uploaded correctly.
|
|||||||
|
|
||||||
|
|
||||||
Animator
|
Animator
|
||||||
--------
|
^^^^^^^^
|
||||||
|
|
||||||
Hjalti opens the project management web site and finds he's been assigned a new shot to animate.
|
Hjalti opens the project management web site and finds he's been assigned a new shot to animate.
|
||||||
|
|
||||||
@@ -98,7 +97,7 @@ He can work on the animation, and modify the file, and commit... *as Mathieu did
|
|||||||
|
|
||||||
|
|
||||||
Editor
|
Editor
|
||||||
------
|
^^^^^^
|
||||||
|
|
||||||
Mathieu is going through his daily review of the edit in Blender,
|
Mathieu is going through his daily review of the edit in Blender,
|
||||||
|
|
||||||
@@ -123,13 +122,13 @@ its values are propagated to the server (*once committed*).
|
|||||||
|
|
||||||
|
|
||||||
Implementation Details
|
Implementation Details
|
||||||
======================
|
----------------------
|
||||||
|
|
||||||
This document describes the layout for Blender pipeline.
|
This document describes the layout for Blender pipeline.
|
||||||
|
|
||||||
|
|
||||||
Overview
|
Overview
|
||||||
--------
|
^^^^^^^^
|
||||||
|
|
||||||
- Use SVN for internal storage.
|
- Use SVN for internal storage.
|
||||||
- SVN repository is for internal storage (but keep usable as *last resort*)
|
- SVN repository is for internal storage (but keep usable as *last resort*)
|
||||||
@@ -138,13 +137,13 @@ Overview
|
|||||||
|
|
||||||
|
|
||||||
SVN Commit Abstraction
|
SVN Commit Abstraction
|
||||||
----------------------
|
^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
Motivation:
|
Motivation:
|
||||||
|
|
||||||
Artists need to be able to work on jobs without downloading entire repository.
|
Artists need to be able to work on jobs without downloading entire repository.
|
||||||
|
|
||||||
----
|
|
||||||
|
|
||||||
Workflow:
|
Workflow:
|
||||||
|
|
||||||
@@ -154,7 +153,7 @@ Workflow:
|
|||||||
- Submit task back with commit log (blender-ui/cli/web?).
|
- Submit task back with commit log (blender-ui/cli/web?).
|
||||||
(Server handles commit).
|
(Server handles commit).
|
||||||
|
|
||||||
----
|
|
||||||
|
|
||||||
Technical details:
|
Technical details:
|
||||||
|
|
||||||
@@ -168,10 +167,10 @@ Technical details:
|
|||||||
|
|
||||||
|
|
||||||
Components
|
Components
|
||||||
==========
|
----------
|
||||||
|
|
||||||
Client
|
Client
|
||||||
------
|
^^^^^^
|
||||||
|
|
||||||
- UI (list + checkout (remote assets), edit + commit (local assets))
|
- UI (list + checkout (remote assets), edit + commit (local assets))
|
||||||
- CLI (command line tool for low level access, scripts TD can use... etc)
|
- CLI (command line tool for low level access, scripts TD can use... etc)
|
||||||
@@ -189,27 +188,26 @@ Client
|
|||||||
|
|
||||||
|
|
||||||
Server
|
Server
|
||||||
------
|
^^^^^^
|
||||||
|
|
||||||
- Write blend file extractor / packager.
|
- Write blend file extractor / packager.
|
||||||
- Write online SVN browser.
|
- Write online SVN browser.
|
||||||
- ... TODO
|
- ... TODO
|
||||||
|
|
||||||
|
|
||||||
#####################
|
|
||||||
Project Management
|
Project Management
|
||||||
#####################
|
==================
|
||||||
|
|
||||||
Use phabricator! DONE :D
|
Use phabricator! DONE :D
|
||||||
|
|
||||||
|
|
||||||
##################
|
Automated Tasks
|
||||||
Automated Tasks
|
===============
|
||||||
##################
|
|
||||||
|
|
||||||
|
|
||||||
Components
|
Components
|
||||||
==========
|
----------
|
||||||
|
|
||||||
There are 2 types of tasks to be automated.
|
There are 2 types of tasks to be automated.
|
||||||
|
|
||||||
@@ -224,7 +222,7 @@ Automated tasks are broken into 3 steps.
|
|||||||
|
|
||||||
|
|
||||||
User Stories
|
User Stories
|
||||||
============
|
------------
|
||||||
|
|
||||||
Heres a list of tasks we would expect the system to support
|
Heres a list of tasks we would expect the system to support
|
||||||
|
|
||||||
@@ -241,97 +239,24 @@ Heres a list of tasks we would expect the system to support
|
|||||||
|
|
||||||
|
|
||||||
Implementation
|
Implementation
|
||||||
==============
|
--------------
|
||||||
|
|
||||||
We plan to develop a very simple system leveraging existing technologies.
|
We plan to develop a very simple system leveraging existing technologies.
|
||||||
|
|
||||||
|
|
||||||
Dashboard
|
Dashboard
|
||||||
---------
|
^^^^^^^^^
|
||||||
|
|
||||||
UI (web based), allows manual creation of tasks.
|
UI (web based), allows manual creation of tasks.
|
||||||
|
|
||||||
|
|
||||||
Server
|
Server
|
||||||
------
|
^^^^^^
|
||||||
|
|
||||||
Backend connected to database and scheduler, managing & assigning jobs to workers.
|
Backend connected to database and scheduler, managing & assigning jobs to workers.
|
||||||
|
|
||||||
|
|
||||||
Worker
|
Worker
|
||||||
------
|
^^^^^^
|
||||||
|
|
||||||
Simple client, exposes control of the machine via an API.
|
Simple client, exposes control of the machine via an API.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
%%%%%%%%%%%%%
|
|
||||||
Milestones
|
|
||||||
%%%%%%%%%%%%%
|
|
||||||
|
|
||||||
|
|
||||||
######################
|
|
||||||
Minimum Viable Product
|
|
||||||
######################
|
|
||||||
|
|
||||||
Get existing project migrated to asset manager as soon as possible.
|
|
||||||
|
|
||||||
- No Client-side-SVN.
|
|
||||||
- Checkout/Commit assets.
|
|
||||||
- Basic UI.
|
|
||||||
- ZIP file access (as an example, users wouldn't have to notice)
|
|
||||||
- Testing (basic testing framework)
|
|
||||||
|
|
||||||
|
|
||||||
###########
|
|
||||||
Performance
|
|
||||||
###########
|
|
||||||
|
|
||||||
- Parallel downloads
|
|
||||||
- Cache (avoid re-downloading files)
|
|
||||||
|
|
||||||
|
|
||||||
#########
|
|
||||||
Interface
|
|
||||||
#########
|
|
||||||
|
|
||||||
- BAM project definition.
|
|
||||||
- Blender Addon (UI for performing basic actions)
|
|
||||||
- *Maybe* extend GUI client.
|
|
||||||
- Web UI
|
|
||||||
- Download Zipfiles
|
|
||||||
|
|
||||||
|
|
||||||
###############
|
|
||||||
Scaling/Project
|
|
||||||
###############
|
|
||||||
|
|
||||||
- Consistency checks (correct library linking)
|
|
||||||
|
|
||||||
|
|
||||||
#####################
|
|
||||||
Basic Automated Tasks
|
|
||||||
#####################
|
|
||||||
|
|
||||||
- Generated Previews (basic automated tasks hooked up to asset manager)
|
|
||||||
- Baking (physics)
|
|
||||||
- Web UI (create/view/manage jobs)
|
|
||||||
|
|
||||||
|
|
||||||
##########
|
|
||||||
Story Tool
|
|
||||||
##########
|
|
||||||
|
|
||||||
- Establish connection between sequencer and 'shot' assets *(abstract concept)*
|
|
||||||
- Integrate into Addon
|
|
||||||
- Connect automated tasks on edit updates, (sync sequence with short assets)
|
|
||||||
- Expose the edit outside of Blender *(web based UI, reviews, comment, feedback, tasks...)*
|
|
||||||
|
|
||||||
|
|
||||||
##################
|
|
||||||
Project Management
|
|
||||||
##################
|
|
||||||
|
|
||||||
- Web UI
|
|
||||||
- Connect basic communication tools to assets, commits.
|
|
||||||
|
|
||||||
|
@@ -8,6 +8,7 @@ Contents:
|
|||||||
|
|
||||||
install/index.rst
|
install/index.rst
|
||||||
design/planning.rst
|
design/planning.rst
|
||||||
|
design/milestones.rst
|
||||||
manual/index.rst
|
manual/index.rst
|
||||||
reference/index.rst
|
reference/index.rst
|
||||||
|
|
||||||
|
@@ -3,14 +3,12 @@ User manual
|
|||||||
|
|
||||||
Using BAM is easy and fun! Provided that:
|
Using BAM is easy and fun! Provided that:
|
||||||
|
|
||||||
- you know how to use the command line of your system.
|
- you know how to use the command line of your os
|
||||||
- have some experience of how versioning systems work
|
- have some experience of how versioning systems work
|
||||||
|
|
||||||
Actually, this is not true, and in this guide we will explain to use BAM client from scratch.
|
Actually, this is not true, and in this guide we will explain to use BAM client from scracth.
|
||||||
|
|
||||||
.. hint::
|
.. hint:: Do not try to follow this page as a step-by-step tutorial, since its content might
|
||||||
|
|
||||||
Do not try to follow this page as a step-by-step tutorial, since its content might
|
|
||||||
be not completely coherent. The purpose of this manual is simply to explain the bam
|
be not completely coherent. The purpose of this manual is simply to explain the bam
|
||||||
workflow from the artist point of view.
|
workflow from the artist point of view.
|
||||||
|
|
||||||
@@ -20,9 +18,7 @@ Project Initialization
|
|||||||
|
|
||||||
In order to start working, we need to initialize a *project folder*. This operation should
|
In order to start working, we need to initialize a *project folder*. This operation should
|
||||||
be done only once. To create a project folder we need to open our terminal, and go to the
|
be done only once. To create a project folder we need to open our terminal, and go to the
|
||||||
location where we want to store the project folder. Then we can type:
|
location where we want to store the project folder. Then we can type::
|
||||||
|
|
||||||
.. code-block:: sh
|
|
||||||
|
|
||||||
bam init http://bam:5000/gooseberry
|
bam init http://bam:5000/gooseberry
|
||||||
|
|
||||||
@@ -40,11 +36,9 @@ Session creation
|
|||||||
================
|
================
|
||||||
|
|
||||||
Once the project has been initialized and we are able to browse it remotely, we can proceed
|
Once the project has been initialized and we are able to browse it remotely, we can proceed
|
||||||
checking out a file from it. For example we can type:
|
checking out a file from it. For example we can type::
|
||||||
|
|
||||||
.. code-block:: sh
|
bam co libs/envs/jungle/jungle_opening.blend
|
||||||
|
|
||||||
bam checkout libs/envs/jungle/jungle_opening.blend
|
|
||||||
|
|
||||||
This creates a ``jungle_opening`` folder inside of our ``gooseberry`` project folder, which
|
This creates a ``jungle_opening`` folder inside of our ``gooseberry`` project folder, which
|
||||||
will contain the ``jungle_opening.blend``, along with all its dependencies (library files,
|
will contain the ``jungle_opening.blend``, along with all its dependencies (library files,
|
||||||
@@ -72,10 +66,32 @@ We can not:
|
|||||||
|
|
||||||
- rename files
|
- rename files
|
||||||
|
|
||||||
In order to check what is the status of our edits, we can use ``bam status``, which will print a list
|
In order to check what is the status of our edits, we can use ``bam st``, which will print a list
|
||||||
of edited, added and deleted files.
|
of edited, added and deleted files.
|
||||||
|
|
||||||
.. note::
|
.. note:: Sessions are meant to create a contained and controlled working environment. We should
|
||||||
|
|
||||||
Sessions are meant to create a contained and controlled working environment. We should
|
|
||||||
never, ever refer to content that is outside of a session folder.
|
never, ever refer to content that is outside of a session folder.
|
||||||
|
|
||||||
|
|
||||||
|
Committing changes
|
||||||
|
==================
|
||||||
|
|
||||||
|
Once we are happy with the changes we made to the session, we can sent id back to the server, which
|
||||||
|
will take care of versioning and merging it back into the project.
|
||||||
|
To commit a change, simply type::
|
||||||
|
|
||||||
|
bam ci -m 'Updated trees'
|
||||||
|
|
||||||
|
If you are outside the session folder, you have to specify it::
|
||||||
|
|
||||||
|
bam ci jungle_opening -m 'Updated trees'
|
||||||
|
|
||||||
|
After committing, we can keep working in the same session, and do further commits.
|
||||||
|
|
||||||
|
|
||||||
|
Updatding and existing session
|
||||||
|
==============================
|
||||||
|
|
||||||
|
At the moment it is not possible to update the session (if another artist updates one of the assets
|
||||||
|
for example, we would like such asset to be updated in all the sessions using it).
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user