Author Topic: Campaigns  (Read 77263 times)

0 Members and 1 Guest are viewing this topic.

Offline Skippy

  • 210
  • It's not a bug, it's a feature™
    • FS/FS2 Campaigns List
Quote
Originally posted by aldo_14

Can you use a linked list or a queue in it?


I use a link list, then a page to display the infos about the link

I've found the syntax to display infos, so it's fine now :)
MACHINA TERRA | FS/FS2 Campaigns list
Specs: Core2 Duo 2GHz, 2GB DDR2, 160GB HD, gfg7700 (Asus G1 Laptop)
Q9550, 4GB DDR2, 2x500GB HD (RAID1), RHD4870, X48-DS6, Corsair 620HX (Desktop)

 

Offline Skippy

  • 210
  • It's not a bug, it's a feature™
    • FS/FS2 Campaigns List
An uncomplete test page has been made here (temporary background)

WIP...
« Last Edit: February 28, 2002, 08:08:51 am by 29 »
MACHINA TERRA | FS/FS2 Campaigns list
Specs: Core2 Duo 2GHz, 2GB DDR2, 160GB HD, gfg7700 (Asus G1 Laptop)
Q9550, 4GB DDR2, 2x500GB HD (RAID1), RHD4870, X48-DS6, Corsair 620HX (Desktop)

 

Offline aldo_14

  • Gunnery Control
  • 213
Quote
Originally posted by Skippy


I use a link list, then a page to display the infos about the link

I've found the syntax to display infos, so it's fine now :)


I meant a linked list data structure, actually, but nevermind.

 

Offline Skippy

  • 210
  • It's not a bug, it's a feature™
    • FS/FS2 Campaigns List
The database has been shut down...
« Last Edit: February 28, 2002, 09:02:54 am by 29 »
MACHINA TERRA | FS/FS2 Campaigns list
Specs: Core2 Duo 2GHz, 2GB DDR2, 160GB HD, gfg7700 (Asus G1 Laptop)
Q9550, 4GB DDR2, 2x500GB HD (RAID1), RHD4870, X48-DS6, Corsair 620HX (Desktop)

 

Offline Skippy

  • 210
  • It's not a bug, it's a feature™
    • FS/FS2 Campaigns List
Quote
Originally posted by aldo_14


I meant a linked list data structure, actually, but nevermind.


Can you explain me ?
MACHINA TERRA | FS/FS2 Campaigns list
Specs: Core2 Duo 2GHz, 2GB DDR2, 160GB HD, gfg7700 (Asus G1 Laptop)
Q9550, 4GB DDR2, 2x500GB HD (RAID1), RHD4870, X48-DS6, Corsair 620HX (Desktop)

 

Offline aldo_14

  • Gunnery Control
  • 213
Quote
Originally posted by Skippy


Can you explain me ?


er... it's comprised of nodes, each of which has a link to the next node.

I was actually thinking in terms of Java at the time, but try this link if you're interested - http://www.cs.strath.ac.uk/teaching/ug/classes/52.231/LLrif.pdf

(it's java mainly, but the descriptions are ok)

The guy who lectured this class was a bit nuts, incidentally.

 

Offline Black Sheep

  • Wannabe Composer
  • 28
Name of the campaign: Descent of Evil
Logo: Yeah, it has one...(already made public...try to find it)
Authors: classified
Number of Missions: classified, but not very many...
Mods included: classified
Description of the campaign: It is a campaign for FreeSpace 2
Extras: classified

...no...it's not a bad joke...but I won't give you any promises about the campaign, cause I can never be really sure that the things will be in the campaign!
"Something is rotten in the state of Denmark"
-Hamlet rulez

 

Offline Skippy

  • 210
  • It's not a bug, it's a feature™
    • FS/FS2 Campaigns List
Quote
Originally posted by aldo_14


er... it's comprised of nodes, each of which has a link to the next node.

I was actually thinking in terms of Java at the time, but try this link if you're interested - http://www.cs.strath.ac.uk/teaching/ug/classes/52.231/LLrif.pdf

(it's java mainly, but the descriptions are ok)

The guy who lectured this class was a bit nuts, incidentally.


I still don't understand :confused:
:rolleyes:
MACHINA TERRA | FS/FS2 Campaigns list
Specs: Core2 Duo 2GHz, 2GB DDR2, 160GB HD, gfg7700 (Asus G1 Laptop)
Q9550, 4GB DDR2, 2x500GB HD (RAID1), RHD4870, X48-DS6, Corsair 620HX (Desktop)

 

Offline aldo_14

  • Gunnery Control
  • 213
Quote
Originally posted by Skippy


I still don't understand :confused:
:rolleyes:


Well - and I'm thinking in purely obj-orientated programming terms here - you were talking about using an array, which is fixed size.

A linked list can be inifinite size.  Whereas an array has elements- like cubbyholes;
[][][][][]
1 2 3 4 5

 - a linked list is composed of objects (nodes).

[contents]--link--[contents]--link--[contents]-nul
| item 1          I  item 2         | item 3  |

  Each object contains whatever the contents are - in this case it would be a description & link of the campaign - and a link to any attached node.   SO you can keep on increasing the size, by adding on nodes to the last node.

i.e. in java it's (roughly)

Code: [Select]

public class node
{
//attributes
protected String nodeData;
protected node succ;

//constructor - data included
public node(String a)
{
                 nodeData = a;
                 succ = null;
                //the successor (linked to) node
//when a node is added, we use;
                //succ = new Node(something);
                //on this
                }
}//end class



I'm not sure whether what you're using can support this - certainly java can - but if it does it would probably be one of the best ways to store data.

(if the parsing gets screwed up, trying quoting the message to see what I mean.)

 

Offline Skippy

  • 210
  • It's not a bug, it's a feature™
    • FS/FS2 Campaigns List
I don't know if PHP or MySQL can support the linked data structure, but I found a way to display the data, so it's OK :)
MACHINA TERRA | FS/FS2 Campaigns list
Specs: Core2 Duo 2GHz, 2GB DDR2, 160GB HD, gfg7700 (Asus G1 Laptop)
Q9550, 4GB DDR2, 2x500GB HD (RAID1), RHD4870, X48-DS6, Corsair 620HX (Desktop)

 

Offline Setekh

  • Jar of Clay
  • 215
    • Hard Light Productions
Quote

http://kissifrot2605.free.fr/campaigns.php


Lol, nice shameless steal of Ice's nebula! :D
- Eddie Kent Woo, Setekh, Steak (of Steaks), AWACS. Seriously, just pick one.
HARD LIGHT PRODUCTIONS, now V3.0. Bringing Modders Together since January 2001.
THE HARD LIGHT ARRAY. Always makes you say wow.

 

Offline Skippy

  • 210
  • It's not a bug, it's a feature™
    • FS/FS2 Campaigns List
I asked him, but he didn't respond... (that's a temporary bavkground, of course :D)
MACHINA TERRA | FS/FS2 Campaigns list
Specs: Core2 Duo 2GHz, 2GB DDR2, 160GB HD, gfg7700 (Asus G1 Laptop)
Q9550, 4GB DDR2, 2x500GB HD (RAID1), RHD4870, X48-DS6, Corsair 620HX (Desktop)

 

Offline Skippy

  • 210
  • It's not a bug, it's a feature™
    • FS/FS2 Campaigns List
A campaign list is available here

I still need infos about the campaigns form Aftermath to Warzone (previous post)
MACHINA TERRA | FS/FS2 Campaigns list
Specs: Core2 Duo 2GHz, 2GB DDR2, 160GB HD, gfg7700 (Asus G1 Laptop)
Q9550, 4GB DDR2, 2x500GB HD (RAID1), RHD4870, X48-DS6, Corsair 620HX (Desktop)

 

Offline Skippy

  • 210
  • It's not a bug, it's a feature™
    • FS/FS2 Campaigns List
MACHINA TERRA | FS/FS2 Campaigns list
Specs: Core2 Duo 2GHz, 2GB DDR2, 160GB HD, gfg7700 (Asus G1 Laptop)
Q9550, 4GB DDR2, 2x500GB HD (RAID1), RHD4870, X48-DS6, Corsair 620HX (Desktop)

 

Offline karajorma

  • King Louie - Jungle VIP
  • Administrator
  • 214
    • Karajorma's Freespace FAQ
How did you manage to miss out blackwater ops and the babylon project? :confused: :wink:

Seems like a good site though :)
Karajorma's Freespace FAQ. It's almost like asking me yourself.

[ Diaspora ] - [ Seeds Of Rebellion ] - [ Mind Games ]

 

Offline Corsair

  • Gull Wings Rule
  • 29
I'm part of the 158th too. Ya missed me...and Alikchi
I'm doing backrounds and ship textures :nod:
Wash: This landing's gonna get pretty interesting.
Mal: Define "interesting".
Wash: *shrug* "Oh God, oh God, we're all gonna die"?
Mal: This is the captain. We have a little problem with our entry sequence, so we may experience some slight turbulence and then... explode.

 

Offline Su-tehp

  • Devil in the Deep Blue
  • 210
Seems like a good list. I like it! :)
REPUBLICANO FACTIO DELENDA EST

Creator of the Devil and the Deep Blue campaign - Current Story Editor of the Exile campaign

"Let my people handle this, we're trained professionals. Well, we're semi-trained, quasi-professionals, at any rate." --Roy Greenhilt,
The Order of the Stick

"Let´s face it, we Freespace players may not be the most sophisticated of gaming freaks, but we do know enough to recognize a heap of steaming crap when it´s right in front of us."
--Su-tehp, while posting on the DatDB internal forum

"The meaning of life is that in the end you always get screwed."
--The Catch 42 Expression, The Lost Fleet: Beyond the Frontier: Steadfast

 

Offline LtNarol

  • Biased Banshee
  • 211
    • http://www.3dap.com/hlp/hosted/the158th
updated staff for Into the Night, Taskforce Panda, Covert Operations, and Renegade listed in order that they joined:

LtNarol-missions, modelling
MjHarv-mission testing/editing
Lady Rose-mission testing/editing
Whitebear-voice actor
Shaz-voice actor
TheIronLung-artist
An0n-modelling, texturing
Zeronet-texturing
Alikchi-artist
Corsair-artist
Dranon-missions
Thorn-animations
USS Alexander-modelling, texturing

(Note: the campaign names are in the order that they will be released in, ITN is the base campaign, the rest are sequels of it)

 

Offline Galemp

  • Actual father of Samus
  • 212
  • Ask me about GORT!
    • Steam
    • User page on the FreeSpace Wiki
Wow! Fantastic Skipster! Why not tell the guys over at VolitionWatch, Freespace 2 Source, and the other big FS sites? I think you'll get plenty more submissions. And, if someone feels like joining a campaign team, they will know where to look, find one that interests them, and so on.
"Anyone can do any amount of work, provided it isn't the work he's supposed to be doing at that moment." -- Robert Benchley

Members I've personally met: RedStreblo, Goober5000, Sandwich, Splinter, Su-tehp, Hippo, CP5670, Terran Emperor, Karajorma, Dekker, McCall, Admiral Wolf, mxlm, RedSniper, Stealth, Black Wolf...

 

Offline Alikchi

  • Neo-Terran
  • 210
  • Spooky ghost (RIP)
Neo Terra Victorious

- Name of the campaign - Neo Terra Victorious, or NTV
- Logo (if any) - Working on it
- Author(s) - Me (Alikchi), Black Wolf, Adwight
- Number of missions - Something like 20-30?
- Mods included (if any) - Most of the old FS2 ships, NTF Trika, NTF Gryphon (maybe), NTD Molotov, GVF Reshef, NTB Jotun, some others
- Description of the campaign - The year is 2362. You, Alpha 1, have changed your mind at the last minute - you're going to fly for the NTF, instead. Bosch discovers the means to defeat the GTVA, and all hell breaks loose..

Website pending. Developer forum is up, but I'm not going to give you the URL `cause I'd reveal too many secrets :)
« Last Edit: March 03, 2002, 08:37:45 pm by 223 »
"Going too far and caring too much about a subject is the best way to make friends that I know."
- Sarah Vowell