Files
@ f411f107eb37
Branch filter:
Location: DistRen/src/server/distrend.c - annotation
f411f107eb37
1.8 KiB
text/plain
Moved blender server module to seperate .c file, fixed typos
7f09dcee58f4 7f09dcee58f4 7f09dcee58f4 aaedffb71a83 aaedffb71a83 aaedffb71a83 7f09dcee58f4 7f09dcee58f4 7f09dcee58f4 aaedffb71a83 aaedffb71a83 7f09dcee58f4 7f09dcee58f4 7f09dcee58f4 aaedffb71a83 7f09dcee58f4 aaedffb71a83 2ccb6e87cf77 7f09dcee58f4 7f09dcee58f4 7df3f36d8160 7df3f36d8160 3e1c191605ce 3e1c191605ce 3e1c191605ce 3e1c191605ce 3e1c191605ce 3e1c191605ce 3e1c191605ce 3e1c191605ce 3e1c191605ce fd1bd9e57cfa fd1bd9e57cfa fd1bd9e57cfa fd1bd9e57cfa df81403a665a df81403a665a df81403a665a fd1bd9e57cfa fd1bd9e57cfa fd1bd9e57cfa fd1bd9e57cfa df81403a665a fd1bd9e57cfa fd1bd9e57cfa 3e1c191605ce 3e1c191605ce 3e1c191605ce 5403c1d3bb52 7df3f36d8160 7f09dcee58f4 7f09dcee58f4 aad5053d6100 8af1e34f742f 8af1e34f742f 7f09dcee58f4 7f09dcee58f4 2ae4e48cbbf3 | /*
Copyright 2008 Nathan Phillip Brink, Ethan Zonca
This file is a part of DistRen.
DistRen is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
DistRen is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with DistRen. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdio.h>
/* Just some notes -- Ethan Zonca
*
* So I read the IRC transcript, and we need some communication and plugin (e.g., blender, povray) standards.
* In addition to those standards, we should also have standards for information availability,
* making statistics and remote control of each plugin or the whole system standard and common,
* so other apps can grab stats from it (such as a j2me phone DistRen status app or a php web
* interface).
*
*
*
* Notes from IRCness:
* Server<==>Client Communication
* Job initiation: <jobnumber> <jobtype={blender,povray,indigo,etc}> <filename> <args specific to the jobtype>
* Job addition : <jobnumber> <alteration: could be (cancel):cancel job (frames):tell the client to render more frames>
* Client Control: system <command> (such as drop all jobs, shutdown client, etc)
*
* blender_getframecount()
* indigo_getframecount() always return 1... or just not bother with it?
*
* Upload while rendering
*
*
*/
// Let's fix those global variable issues one of these days! :D test
int main(int argc, char *argv[])
{
return 0;
}
|