Matrix Games Forums

Forums  Register  Login  Photo Gallery  Member List  Search  Calendars  FAQ 

My Profile  Inbox  Address Book  My Subscription  My Forums  Log Out

Scenario Design Live Stream - 1500 BST 28 April 2020

 
View related threads: (in this forum | in all forums)

Logged in as: Guest
Users viewing this topic: none
  Printable Version
All Forums >> [New Releases from Matrix Games] >> Command: Modern Operations series >> Scenario Design Live Stream - 1500 BST 28 April 2020 Page: [1]
Login
Message << Older Topic   Newer Topic >>
Scenario Design Live Stream - 1500 BST 28 April 2020 - 4/28/2020 11:58:16 AM   
Rory Noonan

 

Posts: 2816
Joined: 12/18/2014
From: Brooklyn, NY
Status: offline
Come join me today at 1500 BST (That's British Summer Time, UTC +1) to take an in-depth look at scenario design; from creating a simple 1 v 1 ASuW engagement to the production processes behind complex, open ended campaigns.

http://twitch.tv/slitherinegroup

_____________________________

Post #: 1
RE: Scenario Design Live Stream - 1500 BST 28 April 2020 - 4/29/2020 7:44:43 AM   
Rory Noonan

 

Posts: 2816
Joined: 12/18/2014
From: Brooklyn, NY
Status: offline
As promised, attached are the scenario design tools from yesterday's stream

Attachment (1)

_____________________________


(in reply to Rory Noonan)
Post #: 2
RE: Scenario Design Live Stream - 1500 BST 28 April 2020 - 4/29/2020 8:10:29 AM   
tiag

 

Posts: 91
Joined: 6/21/2018
Status: offline
Very interesting video.


< Message edited by tiag -- 4/29/2020 8:19:39 AM >

(in reply to Rory Noonan)
Post #: 3
RE: Scenario Design Live Stream - 1500 BST 28 April 2020 - 4/29/2020 1:40:05 PM   
TitaniumTrout


Posts: 374
Joined: 10/20/2014
From: Michigan
Status: offline

quote:

ORIGINAL: apache85

As promised, attached are the scenario design tools from yesterday's stream


The facilities tab looks the most tedious to develop. How did you bring together 1,500 lines of facilities, type, and lat/lon?

Thanks for posting it all, really a great resource.



_____________________________


(in reply to Rory Noonan)
Post #: 4
RE: Scenario Design Live Stream - 1500 BST 28 April 2020 - 4/29/2020 2:32:53 PM   
Tom Konczal

 

Posts: 80
Joined: 5/29/2000
From: Orland Park, IL
Status: offline
I must admit I was disappointed. I was hoping for a demo on how to make a small scenario without LUA scripting the entire thing since I know nothing about LUA scripts at the point. I am a newbie to scenario design.

(in reply to TitaniumTrout)
Post #: 5
RE: Scenario Design Live Stream - 1500 BST 28 April 2020 - 4/29/2020 2:50:38 PM   
Joelsi


Posts: 113
Joined: 10/17/2018
From: Finland
Status: offline
I'm also very interested to know how did you get all those coordinates to the Excel file?

(in reply to Tom Konczal)
Post #: 6
RE: Scenario Design Live Stream - 1500 BST 28 April 2020 - 4/29/2020 4:32:03 PM   
kevinkins


Posts: 2257
Joined: 3/8/2006
Status: offline
Yes, how is the lat/lon info (20 numbers for each unit) placed into the spreadsheet and then transferred into the lua script? That seems key to any time saving. If it is done by hand, how does this save time compared to the old fashioned way of just adding stuff to the map with the mouse? Maybe it's about something other than saving time. Seems making a scenario this way could introduce a lot of errors. Once the map is populated via code, the designer is going to have to check it was populated correctly by direct inspection anyway. If this was covered, I missed it. I like using lua, so this is all very interesting.

Kevin

_____________________________

“The study of history lies at the foundation of all sound military conclusions and practice.”
― Alfred Thayer Mahan


(in reply to Tom Konczal)
Post #: 7
RE: Scenario Design Live Stream - 1500 BST 28 April 2020 - 4/29/2020 5:11:55 PM   
Parel803

 

Posts: 579
Joined: 10/10/2019
From: Netherlands
Status: offline
Nice, thx

(in reply to kevinkins)
Post #: 8
RE: Scenario Design Live Stream - 1500 BST 28 April 2020 - 4/29/2020 10:03:43 PM   
TitaniumTrout


Posts: 374
Joined: 10/20/2014
From: Michigan
Status: offline

quote:

ORIGINAL: Joelsi

I'm also very interested to know how did you get all those coordinates to the Excel file?


I did some playing around and one can really make an airbase quick using the Stamen Terrain layer.

After that I exported it as an INST file. With that I imported the json into Excel and voila, I've got a nice table with all my data. For the first time it's slow, but I could see it going very quick. Plus once you've got it it becomes easy to use something like the OOB.xlsm that Apache posted to pack it all up for use.

_____________________________


(in reply to Joelsi)
Post #: 9
RE: Scenario Design Live Stream - 1500 BST 28 April 2020 - 4/30/2020 12:34:03 AM   
Rory Noonan

 

Posts: 2816
Joined: 12/18/2014
From: Brooklyn, NY
Status: offline
For the airbases I think--from memory, this was two years ago--I used an overlay and plopped down the appropriate facilities without any real regard for naming them. Then I used Lua to print the data in csv format to the console:
quote:


local sideUnits = VP_GetSide({side='playerside'}).units
for k,v in ipairs (sideUnits) do
local unit = ScenEdit_GetUnit({guid=v.guid})
print(unit.name..','..unit.dbid..','..unit.latitude..','..unit.longitude..','..unit.guid)
end

Copy and paste the output into Excel and use the Data > Columns from Text, or copy into a blank .txt file in Notepad and save as .csv.

From there I renamed things as necessary, e.g. from Runway (2600m) to Your Favourite Airport RWY 09/27 or Hangar (Medium) to Your Favourite Airport Hangar #12. Distinct names really help when you get damage reports, or when you're targetting multiple facilities in a single mission/manual weapon allocation. Using the data entry shortcuts, concatenation and flash-fill features of Excel I can make properly formatted names for dozens of units very, very quickly compared to manually renaming them on placement.

To rename them, I would use the GUID and SetUnit:
quote:


listOfUnits = {insert your list of units to change here...
for k,v in ipairs (listOfUnits) do
local unit = ScenEdit_SetUnit({guid=v.guid, newname=v.name})
end


Latitude/Longitude co-ordinates for ships were less elegant. I just picked a spot in the middle of the Pacific (with no land around is the main idea) as my starting Lat/Lon, plopped down a few examples of the classes I wanted to add (one of each), and then exported them to CSV as above. Rather than place each unit of each class individually I flash-filled data like the DBID, then used concatenation to cut down on repetitive data entry for things like the designation and pennant number (there's no point in typing DD 101, DD 102, DD 103.. etc when you can have a spreadsheet do the work!) and joined them to the actual ship name. For lat/lon I think I just changed the number a fraction each time, so long as you're not close to land shouldn't be a problem.

_____________________________


(in reply to TitaniumTrout)
Post #: 10
RE: Scenario Design Live Stream - 1500 BST 28 April 2020 - 4/30/2020 12:36:03 AM   
Rory Noonan

 

Posts: 2816
Joined: 12/18/2014
From: Brooklyn, NY
Status: offline

quote:

ORIGINAL: Tom Konczal

I must admit I was disappointed. I was hoping for a demo on how to make a small scenario without LUA scripting the entire thing since I know nothing about LUA scripts at the point. I am a newbie to scenario design.


Sorry to disappoint. The presentation was aimed experienced users and pro users who use Command as part of their day-to-day work.

P Gatcomb has some excellent tutorials you may be interested in.

_____________________________


(in reply to Tom Konczal)
Post #: 11
RE: Scenario Design Live Stream - 1500 BST 28 April 2020 - 4/30/2020 12:37:46 AM   
Rory Noonan

 

Posts: 2816
Joined: 12/18/2014
From: Brooklyn, NY
Status: offline
And since I wasn't happy with the answer I gave to Kushan's question about KeyValues, here is a YouTube video with a much more in depth explanation.
https://www.youtube.com/watch?v=ZM8m9ntmBng

_____________________________


(in reply to Rory Noonan)
Post #: 12
RE: Scenario Design Live Stream - 1500 BST 28 April 2020 - 4/30/2020 1:54:00 AM   
Gunner98

 

Posts: 5508
Joined: 4/29/2005
From: The Great White North!
Status: offline
I've got to re-watch the video and play with your scripts. Looks impressive. I usually do most of what you did either by hand the first time or with export/import to re-create. Nowhere near as slick as your scripts.

Thanks

B

_____________________________

Check out our novel, Northern Fury: H-Hour!: http://northernfury.us/
And our blog: http://northernfury.us/blog/post2/
Twitter: @NorthernFury94 or Facebook https://www.facebook.com/northernfury/

(in reply to Rory Noonan)
Post #: 13
RE: Scenario Design Live Stream - 1500 BST 28 April 2020 - 4/30/2020 12:24:17 PM   
kevinkins


Posts: 2257
Joined: 3/8/2006
Status: offline
quote:

For lat/lon I think I just changed the number a fraction each time, so long as you're not close to land shouldn't be a problem.


Thanks, I am starting to understand better. But the ships are not being placed tactically within the context of the scenario. Or are they? The designer will still have to do that by hand. Is that correct?

Kevin

_____________________________

“The study of history lies at the foundation of all sound military conclusions and practice.”
― Alfred Thayer Mahan


(in reply to Rory Noonan)
Post #: 14
RE: Scenario Design Live Stream - 1500 BST 28 April 2020 - 4/30/2020 12:57:26 PM   
Gunner98

 

Posts: 5508
Joined: 4/29/2005
From: The Great White North!
Status: offline
quote:

The designer will still have to do that by hand. Is that correct?


That is my read of it, just dump them on the map and move them around. I do the same with Export import files - not as slick though.

_____________________________

Check out our novel, Northern Fury: H-Hour!: http://northernfury.us/
And our blog: http://northernfury.us/blog/post2/
Twitter: @NorthernFury94 or Facebook https://www.facebook.com/northernfury/

(in reply to kevinkins)
Post #: 15
RE: Scenario Design Live Stream - 1500 BST 28 April 2020 - 4/30/2020 3:53:23 PM   
kevinkins


Posts: 2257
Joined: 3/8/2006
Status: offline
Thanks.

_____________________________

“The study of history lies at the foundation of all sound military conclusions and practice.”
― Alfred Thayer Mahan


(in reply to Gunner98)
Post #: 16
RE: Scenario Design Live Stream - 1500 BST 28 April 2020 - 4/30/2020 6:03:00 PM   
KnightHawk75

 

Posts: 1450
Joined: 11/15/2018
Status: offline
Caught the Vod, thanks for doing the session, was interesting to see your own process.

(in reply to kevinkins)
Post #: 17
RE: Scenario Design Live Stream - 1500 BST 28 April 2020 - 5/3/2020 1:18:46 PM   
Parel803

 

Posts: 579
Joined: 10/10/2019
From: Netherlands
Status: offline
Learned a lot playing with the excel sheets. Modified to use for Refpoints.
Could I also add missions and zones in the same manner.
Newby in it all. Cannot copy it couase I don't understand to much about scripting.
The SE Add lines are different in the latter in the fact that they don't use the word "Side" for example.
Hoping this make sense, with regards

_____________________________


(in reply to KnightHawk75)
Post #: 18
Page:   [1]
All Forums >> [New Releases from Matrix Games] >> Command: Modern Operations series >> Scenario Design Live Stream - 1500 BST 28 April 2020 Page: [1]
Jump to:





New Messages No New Messages
Hot Topic w/ New Messages Hot Topic w/o New Messages
Locked w/ New Messages Locked w/o New Messages
 Post New Thread
 Reply to Message
 Post New Poll
 Submit Vote
 Delete My Own Post
 Delete My Own Thread
 Rate Posts


Forum Software © ASPPlayground.NET Advanced Edition 2.4.5 ANSI

1.078