1
0
Fork 0

Merge branch 'master' of gitorious.org:fg/fgdata

This commit is contained in:
Dave Perry 2010-07-31 07:18:47 -06:00
commit 3e0031eabd
43 changed files with 116 additions and 100 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 268 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 672 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 260 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 746 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 492 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 701 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 840 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 743 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 178 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 170 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 167 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 194 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 193 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 77 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 127 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 80 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 85 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 115 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 90 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 129 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 75 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

View file

@ -1,15 +1,15 @@
###############################################################################
## $Id$
##
## A message based information broadcast for the multiplayer network.
##
## Copyright (C) 2008 - 2009 Anders Gidenstam (anders(at)gidenstam.org)
## Copyright (C) 2008 - 2010 Anders Gidenstam (anders(at)gidenstam.org)
## This file is licensed under the GPL license version 2 or later.
##
###############################################################################
###############################################################################
# Broadcast primitive using a MP enabled string property.
# Broadcasts from users in multiplayer.ignore are ignored.
#
# BroadcastChannel.new(mpp_path, process)
# Create a new broadcast primitive. Any MP user with the same
@ -101,7 +101,9 @@ BroadcastChannel.update = func {
props.globals.getNode("/ai/models").getChildren("multiplayer");
foreach (var pilot; mpplayers) {
if ((pilot.getChild("valid") != nil) and
pilot.getChild("valid").getValue()) {
pilot.getChild("valid").getValue() and
!contains(multiplayer.ignore,
pilot.getChild("callsign").getValue())) {
if ((me.peers[pilot.getIndex()] == nil) and
me.accept_predicate(pilot)) {
me.peers[pilot.getIndex()] =
@ -110,8 +112,10 @@ BroadcastChannel.update = func {
MessageChannel.new_message_handler(process_msg, pilot));
}
} else {
delete(me.peers, pilot.getIndex());
me.on_disconnect(pilot);
if (contains(me.peers, pilot.getIndex())) {
delete(me.peers, pilot.getIndex());
me.on_disconnect(pilot);
}
}
}
me.last_time = t;

View file

@ -1,10 +1,9 @@
###############################################################################
## $Id$
##
## A cellular automaton forest fire model with the ability to
## spread over the multiplayer network.
##
## Copyright (C) 2007 - 2009 Anders Gidenstam (anders(at)gidenstam.org)
## Copyright (C) 2007 - 2010 Anders Gidenstam (anders(at)gidenstam.org)
## This file is licensed under the GPL license version 2 or later.
##
###############################################################################
@ -21,6 +20,9 @@ var trace = func {}
# Where to save fire event logs.
var SAVEDIR = getprop("/sim/fg-home") ~ "/Wildfire/";
# Maximum number of ignite events a single user can send per second.
var MAX_IGNITE_RATE = 0.25;
###############################################################################
## External API
@ -132,6 +134,7 @@ var fire_LOD_pp = "environment/wildfire/models/fire-lod";
var smoke_LOD_pp = "environment/wildfire/models/smoke-lod";
var LOD_High = 20;
var LOD_Low = 80;
var mp_last_limited_event = {}; # source : time
var score = { extinguished : 0, protected : 0, waste : 0 };
var old_score = { extinguished : 0, protected : 0, waste : 0 };
@ -189,10 +192,19 @@ var foam_drop_msg = func (pos, radius, volume) {
var parse_msg = func (source, msg) {
if (!getprop(MP_share_pp)) return;
var cur_time = systime();
var type = Binary.decodeByte(substr(msg, 5));
if (type == 1) {
var pos = Binary.decodeCoord(substr(msg, 6));
ignite(pos, 0);
var i = source.getIndex();
if (!contains(mp_last_limited_event, i) or
(cur_time - mp_last_limited_event[i]) > 1/MAX_IGNITE_RATE) {
var pos = Binary.decodeCoord(substr(msg, 6));
ignite(pos, 0);
} else {
printlog("warn", "wildfire.nas: Ignored ignite event from " ~
source.getNode("callsign").getValue());
}
mp_last_limited_event[i] = cur_time;
}
if (type == 2) {
var pos = Binary.decodeCoord(substr(msg, 6));

Binary file not shown.

View file

@ -1,92 +1,92 @@
<?xml version="1.0"?>
<PropertyList>
<name>pushback</name>
<layout>vbox</layout>
<nasal>
<open>
var pushback_position = aircraft.door.new("sim/model/pushback", 10.0);
pushback_position.setpos(pushback_position.getpos());
props.globals.getNode("/sim/model/pushback/enabled", 1 ).setBoolValue(1);
props.globals.initNode("/sim/model/pushback/target-speed-fps", 0.0 );
</open>
<close>
pushback_position.setpos(0);
setprop("/sim/model/pushback/enabled", 0 );
setprop("/sim/model/pushback/target-speed-fps", 0 );
</close>
</nasal>
<group>
<layout>hbox</layout>
<text>
<label>Pushback</label>
</text>
<empty>
<stretch>true</stretch>
</empty>
<button>
<legend/>
<key>Esc</key>
<pref-width>16</pref-width>
<pref-height>16</pref-height>
<border>2</border>
<binding>
<command>dialog-close</command>
</binding>
</button>
</group>
<hrule/>
<group>
<stretch>true</stretch>
<layout>vbox</layout>
<halign>center</halign>
<valign>top</valign>
<checkbox>
<halign>left</halign>
<label>(Dis)Connect pushback</label>
<property>/sim/model/pushback/position-norm</property>
<binding>
<command>nasal</command>
<script>pushback_position.toggle();</script>
</binding>
</checkbox>
<group>
<layout>hbox</layout>
<text>
<label>Speed:</label>
</text>
<slider>
<row>0</row>
<col>2</col>
<min>-25</min> <!-- +/- 15kts -->
<max>25</max>
<property>/sim/model/pushback/target-speed-fps</property>
<binding>
<command>dialog-apply</command>
</binding>
</slider>
<text>
<pref-width>16</pref-width>
<property>/sim/model/pushback/target-speed-fps</property>
<format>%2.0f</format>
<live>true</live>
</text>
<text>
<label>fps</label>
</text>
</group>
<?xml version="1.0"?>
<PropertyList>
<name>pushback</name>
<layout>vbox</layout>
<nasal>
<open>
var pushback_position = aircraft.door.new("sim/model/pushback", 10.0);
pushback_position.setpos(pushback_position.getpos());
props.globals.getNode("/sim/model/pushback/enabled", 1 ).setBoolValue(1);
props.globals.initNode("/sim/model/pushback/target-speed-fps", 0.0 );
</open>
<close>
pushback_position.setpos(0);
setprop("/sim/model/pushback/enabled", 0 );
setprop("/sim/model/pushback/target-speed-fps", 0 );
</close>
</nasal>
<group>
<layout>hbox</layout>
<text>
<label>Pushback</label>
</text>
<empty>
<stretch>true</stretch>
</empty>
<button>
<legend/>
<key>Esc</key>
<pref-width>16</pref-width>
<pref-height>16</pref-height>
<border>2</border>
<binding>
<command>dialog-close</command>
</binding>
</button>
</group>
<hrule/>
<group>
<stretch>true</stretch>
<layout>vbox</layout>
<halign>center</halign>
<valign>top</valign>
<checkbox>
<halign>left</halign>
<label>(Dis)Connect pushback</label>
<property>/sim/model/pushback/position-norm</property>
<binding>
<command>nasal</command>
<script>pushback_position.toggle();</script>
</binding>
</checkbox>
<group>
<layout>hbox</layout>
<text>
<label>Speed:</label>
</text>
<slider>
<row>0</row>
<col>2</col>
<min>-25</min> <!-- +/- 15kts -->
<max>25</max>
<property>/sim/model/pushback/target-speed-fps</property>
<binding>
<command>dialog-apply</command>
</binding>
</slider>
<text>
<pref-width>16</pref-width>
<property>/sim/model/pushback/target-speed-fps</property>
<format>%2.0f</format>
<live>true</live>
</text>
<text>
<label>fps</label>
</text>
</group>
</group> </PropertyList>